mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 20:12:23 +00:00
12 lines
187 B
C#
12 lines
187 B
C#
namespace JamGame.Components
|
|
{
|
|
public enum Facing
|
|
{
|
|
Left, Right
|
|
}
|
|
|
|
public class Player
|
|
{
|
|
private Facing Facing { get; set; } = Facing.Right;
|
|
}
|
|
} |