mirror of
https://github.com/ApfelTeeSaft/Slender.git
synced 2026-08-27 11:53:34 +00:00
14 lines
227 B
C#
14 lines
227 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public enum ControlState
|
|
{
|
|
WaitingForFirstTouch = 0,
|
|
WaitingForSecondTouch = 1,
|
|
MovingCharacter = 2,
|
|
WaitingForMovement = 3,
|
|
ZoomingCamera = 4,
|
|
RotatingCamera = 5,
|
|
WaitingForNoFingers = 6
|
|
}
|