1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 02:39:53 +08:00
Files
osu-lazer/osu.Game/IO/IMutableStore.cs
T
2018-02-15 13:49:38 +09:00

17 lines
450 B
C#

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