This commit is contained in:
backuppc
2026-02-10 14:53:54 +09:00
parent c2cc5d67ae
commit 471b8ff9c4
18 changed files with 786 additions and 743 deletions

View File

@@ -13,6 +13,20 @@ namespace arDev
DataType = type;
}
}
public enum eTurnEvent
{
Left=0,
Right
}
public class TurnEventArgs : EventArgs
{
public eTurnEvent Direction { get; set; }
public TurnEventArgs(eTurnEvent data)
{
this.Direction = data;
}
}
}