LNXSDK/Kha/Sources/kha/Rotation.hx

14 lines
231 B
Haxe
Raw Normal View History

2025-01-22 16:18:30 +01:00
package kha;
import kha.math.Vector2;
class Rotation {
public var center: Vector2;
public var angle: Float;
public function new(center: Vector2, angle: Float) {
this.center = center;
this.angle = angle;
}
}