Fixed shorthand for position
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user