コード例 #1
0
 private void OnDirectionChanged(object sender, DirectionEventArgs e)
 {
     _joyDir = e.Direction;
 }
コード例 #2
0
ファイル: SPlayer.cs プロジェクト: eickegao/Blazera
 void SPlayer_OnDirectionEnablement(WorldObject sender, DirectionEventArgs e)
 {
     SendInfoMove();
 }
コード例 #3
0
 public FaceEventArgs(FaceEventType type, DirectionEventArgs direction)
 {
     this.EventType = type;
     this.Direction = direction;
 }
コード例 #4
0
        protected virtual void OnDirectionChanged(Directions dir)
        {
            DirectionEventArgs dea = new DirectionEventArgs(dir);

            DirectionChanged?.Invoke(this, dea);
        }