1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 23:12:56 +08:00

Revert "Switch Guid implementation temporarily to avoid compile time error"

This reverts commit 4d976094d1.
This commit is contained in:
Dean Herbert 2021-04-24 01:59:55 +09:00
parent 78f274d51a
commit f9603eefe5

View File

@ -12,14 +12,7 @@ namespace osu.Game.Input.Bindings
public class RealmKeyBinding : RealmObject, IHasGuidPrimaryKey, IKeyBinding
{
[PrimaryKey]
public string StringGuid { get; set; }
[Ignored]
public Guid ID
{
get => Guid.Parse(StringGuid);
set => StringGuid = value.ToString();
}
public Guid ID { get; set; }
public int? RulesetID { get; set; }