KinPortal/Game/HandsState.cs

17 lines
340 B
C#
Raw Normal View History

2020-05-15 12:18:51 +02:00
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;
}
}
}