- Timestamp:
- 2014-07-24 12:21:42 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
2014/30/MikkoI/WindowsGame1/WindowsGame1/WindowsGame1/Map/MapObject.cs
r5607 r5626 12 12 public string textureId; 13 13 public Vector2 position; 14 public MapObject(string textureId, float x, float y, bool animated = false) 14 public float shadowOffset = 0; 15 public MapObject(string textureId, float x, float y, bool animated = false, float shadowOffset = 0) 15 16 { 17 this.shadowOffset = shadowOffset; 16 18 this.textureId = textureId; 17 19 this.position = new Vector2(x, y);
Note: See TracChangeset
for help on using the changeset viewer.