LNXSDK/Kha/Sources/kha/ScreenRotation.hx

12 lines
205 B
Haxe
Raw Permalink Normal View History

2025-01-22 16:18:30 +01:00
package kha;
/**
* Enum with all the possible rotations.
*/
enum abstract ScreenRotation(Int) {
var RotationNone = 0;
var Rotation90 = 90;
var Rotation180 = 180;
var Rotation270 = 270;
}