LNXSDK/Kha/Backends/HTML5/kha/js/graphics4/ConstantLocation.hx
2025-01-22 16:18:30 +01:00

12 lines
254 B
Haxe

package kha.js.graphics4;
class ConstantLocation implements kha.graphics4.ConstantLocation {
public var value: Dynamic;
public var type: Int;
public function new(value: Dynamic, type: Int) {
this.value = value;
this.type = type;
}
}