Fixed shorthand for position

This commit is contained in:
Simon Holmberg
2012-09-24 20:00:40 +02:00
parent 76594dddda
commit 430e5572ab
2 changed files with 4 additions and 4 deletions
@@ -17,7 +17,7 @@ namespace DepthsBelow.Component
} }
set set
{ {
Position.X = X; Position.X = value;
} }
} }
public float Y public float Y
@@ -28,7 +28,7 @@ namespace DepthsBelow.Component
} }
set set
{ {
Position.Y = Y; Position.Y = value;
} }
} }
@@ -17,7 +17,7 @@ namespace DepthsBelow.Component
} }
set set
{ {
Position.X = X; Position.X = value;
} }
} }
public float Y public float Y
@@ -28,7 +28,7 @@ namespace DepthsBelow.Component
} }
set set
{ {
Position.Y = Y; Position.Y = value;
} }
} }
public float Rotation; public float Rotation;