Skip to content

Commit 1fbb2b4

Browse files
committed
removed internal accessor
1 parent b9cba81 commit 1fbb2b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LDtkMonogame/Types/Entity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class Entity
2222
/// Local level position
2323
/// </summary>
2424
/// <value>Pixel position in the world</value>
25-
public Vector2 LevelPosition { get => levelposition; internal set => levelposition = value; }
25+
public Vector2 LevelPosition { get => levelposition; set => levelposition = value; }
2626

2727
private Vector2 levelposition;
2828

0 commit comments

Comments
 (0)