// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE namespace osu.Game.IO { public interface IMutableStore { /// /// Add an object to the store. /// /// The object to add. void Add(T item); bool Delete(T item); } }