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;
}
}
}

View File

@@ -71,7 +71,8 @@ namespace arDev
/// 분석완료된 데이터 이벤트
/// </summary>
public event EventHandler<DataEventArgs> DataReceive;
public event EventHandler<TurnEventArgs> TurnComplete;
#endregion