X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fcarfire;a=blobdiff_plain;f=CarFire%2FCarFire%2FCarFire%2FIEntity.cs;h=76dcc19a8a15b48e5617261aeefb2c05b2766670;hp=b8121719f1aef7614764591981af146b55be8a44;hb=08f41ef45f3c41ca6302150bc6d5270c8e7143db;hpb=3ca5852a7df47d4129743ed449816c7c7347b699 diff --git a/CarFire/CarFire/CarFire/IEntity.cs b/CarFire/CarFire/CarFire/IEntity.cs index b812171..76dcc19 100644 --- a/CarFire/CarFire/CarFire/IEntity.cs +++ b/CarFire/CarFire/CarFire/IEntity.cs @@ -32,6 +32,11 @@ namespace CarFire /// The widget. void Draw(SpriteBatch spriteBatch); + /// + /// Get whether or not the entity is collidable. + /// + bool IsCollidable { get; } + /// /// Get the actual position. /// @@ -40,6 +45,11 @@ namespace CarFire /// /// Get the coordinates on the grid. /// - Point Coordinates { get; } + Point Coordinates { get; set; } + + /// + /// Get the entity's identifier. + /// + char Identifier { get; } } }