10 lines
158 B
Haxe
Raw Permalink Normal View History

2025-01-22 16:18:30 +01:00
package kha.arrays;
class ByteBuffer {
public static function create(length: Int): ByteBuffer {
return null;
}
function new(length: Int) {}
}