10 lines
130 B
Haxe
Raw Normal View History

2025-01-22 16:18:30 +01:00
package kha.compute;
class TextureUnit {
public var _unit: Pointer;
public function new(unit: Pointer) {
_unit = unit;
}
}