12 lines
205 B
Haxe
12 lines
205 B
Haxe
|
package kha;
|
||
|
|
||
|
/**
|
||
|
* Enum with all the possible rotations.
|
||
|
*/
|
||
|
enum abstract ScreenRotation(Int) {
|
||
|
var RotationNone = 0;
|
||
|
var Rotation90 = 90;
|
||
|
var Rotation180 = 180;
|
||
|
var Rotation270 = 270;
|
||
|
}
|