forked from LeenkxTeam/LNXSDK
10 lines
125 B
Haxe
10 lines
125 B
Haxe
package kha.internal;
|
|
|
|
class IntBox {
|
|
public var value: Int;
|
|
|
|
public function new(value: Int) {
|
|
this.value = value;
|
|
}
|
|
}
|