コード例 #1
0
ファイル: IInputProvider.cs プロジェクト: ricklove/ToldEm
 public InputValue(InputType type, ScreenPoint position, KeyValue keyValue)
 {
     Type = type;
     Position = position;
     KeyValue = keyValue;
 }
コード例 #2
0
ファイル: Entity.GEN.cs プロジェクト: ricklove/ToldEm
 public GameInputValue(Boolean isWithinBounds, Boolean hasChanged, InputChangeType changeType, GameTimeSpan timeSinceDown, InputType type, IGamePoint position, KeyValue keyValue)
 {
     IsWithinBounds = isWithinBounds;
     HasChanged = hasChanged;
     ChangeType = changeType;
     TimeSinceDown = timeSinceDown;
     Type = type;
     Position = position;
     KeyValue = keyValue;
 }