Core/Refactor: Part 2

This commit is contained in:
hondacrx
2018-05-07 22:07:35 -04:00
parent 216db1c23a
commit 9b40067017
93 changed files with 321 additions and 388 deletions
+2 -2
View File
@@ -311,7 +311,7 @@ namespace Game.Entities
public override string ToString()
{
return string.Format("X: {0} Y: {1} Z: {2} O: {3}", posX, posY, posZ, Orientation);
return $"X: {posX} Y: {posY} Z: {posZ} O: {Orientation}";
}
public float posX;
@@ -356,7 +356,7 @@ namespace Game.Entities
}
public uint GetMapId() { return _mapId; }
public void SetMapId(uint _mapId) { this._mapId = _mapId; }
public void SetMapId(uint mapId) { _mapId = mapId; }
public Cell GetCurrentCell()
{