You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using Preparation.Utility;
-
- namespace Preparation.Interface
- {
- public interface IGameObj
- {
- public GameObjType Type { get; }
- public long ID { get; }
- public XYPosition Position { get; } // if Square, Pos equals the center
- public double FacingDirection { get; }
- public bool IsRigid { get; }
- public ShapeType Shape { get; }
- public bool CanMove { get; set; }
- public bool IsMoving { get; set; }
- public bool IsResetting { get; set; } // reviving
- public bool IsAvailable { get; }
- public int Radius { get; } // if Square, Radius equals half length of one side
- public PlaceType Place { get; set; }
- }
- }
|