KinPortal/Game/HandsState.cs
2020-05-15 12:18:51 +02:00

17 lines
340 B
C#
Executable File

using Microsoft.Xna.Framework;
namespace KinPortal {
public class HandsState {
public Point Pos {get; set;}
public double Depth {get; set;}
public bool PrevIsClosed {get; set;}
public bool IsClosed {get; set;}
public HandsState() {
Pos = Point.Zero;
IsClosed = false;
PrevIsClosed = false;
}
}
}