forked from LeenkxTeam/LNXSDK
10 lines
130 B
Haxe
10 lines
130 B
Haxe
package kha.compute;
|
|
|
|
class TextureUnit {
|
|
public var _unit: Pointer;
|
|
|
|
public function new(unit: Pointer) {
|
|
_unit = unit;
|
|
}
|
|
}
|