Allow "refreshing" instances via DatabaseBackedStore

This commit is contained in:
Dean Herbert
2017-10-25 18:28:28 +09:00
parent 5cd04392b4
commit 8452e315f4
3 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,10 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Database
{
public interface IHasPrimaryKey
{
int ID { get; set; }
}
}