Skip to content

Commit

Permalink
Added missing render orders. Fixes #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ragath committed Sep 20, 2018
1 parent e0c9638 commit 54ba4ab
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions TiledLib/RenderOrder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ namespace TiledLib
public enum RenderOrder : byte
{
Unknown = 0,
[EnumMember(Value = "left-up")]
leftup,
[EnumMember(Value = "left-down")]
leftdown,
[EnumMember(Value = "right-up")]
rightup,
[EnumMember(Value = "right-down")]
rightdown
}
Expand Down

0 comments on commit 54ba4ab

Please sign in to comment.