2025-01-22 16:18:30 +01:00

12 lines
271 B
Haxe

package kha.netsync;
import haxe.io.Bytes;
@:autoBuild(kha.netsync.EntityBuilder.build())
interface Entity {
function _id(): Int;
function _size(): Int;
function _send(offset: Int, bytes: Bytes): Int;
function _receive(offset: Int, bytes: Bytes): Int;
}