mirror of
https://github.com/ppy/osu
synced 2025-01-19 04:20:59 +00:00
Revert "Switch Guid implementation temporarily to avoid compile time error"
This reverts commit 4d976094d1
.
This commit is contained in:
parent
78f274d51a
commit
f9603eefe5
@ -12,14 +12,7 @@ namespace osu.Game.Input.Bindings
|
|||||||
public class RealmKeyBinding : RealmObject, IHasGuidPrimaryKey, IKeyBinding
|
public class RealmKeyBinding : RealmObject, IHasGuidPrimaryKey, IKeyBinding
|
||||||
{
|
{
|
||||||
[PrimaryKey]
|
[PrimaryKey]
|
||||||
public string StringGuid { get; set; }
|
public Guid ID { get; set; }
|
||||||
|
|
||||||
[Ignored]
|
|
||||||
public Guid ID
|
|
||||||
{
|
|
||||||
get => Guid.Parse(StringGuid);
|
|
||||||
set => StringGuid = value.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public int? RulesetID { get; set; }
|
public int? RulesetID { get; set; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user