forked from LeenkxTeam/LNXSDK
12 lines
271 B
Haxe
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;
|
|
}
|