forked from LeenkxTeam/LNXSDK
10 lines
158 B
Haxe
10 lines
158 B
Haxe
package kha.arrays;
|
|
|
|
class ByteBuffer {
|
|
public static function create(length: Int): ByteBuffer {
|
|
return null;
|
|
}
|
|
|
|
function new(length: Int) {}
|
|
}
|