mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-26 22:49:01 +08:00
16 lines
203 B
Haxe
16 lines
203 B
Haxe
package spine;
|
|
|
|
class Rectangle {
|
|
public var x:Float;
|
|
public var y:Float;
|
|
public var width:Float;
|
|
public var height:Float;
|
|
|
|
public function new() {
|
|
x = 0;
|
|
y = 0;
|
|
width = 0;
|
|
height = 0;
|
|
}
|
|
}
|