18 lines
368 B
C#
18 lines
368 B
C#
|
using System;
|
|||
|
|
|||
|
namespace BITKit.Entities
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public struct EntitiesNetSyncCommand
|
|||
|
{
|
|||
|
public byte[] Data;
|
|||
|
}
|
|||
|
[Serializable]
|
|||
|
public struct EntitiesNetSyncBatchCommand
|
|||
|
{
|
|||
|
public int Length;
|
|||
|
public int[] Ids;
|
|||
|
public ulong[] AddressablePaths;
|
|||
|
public EntitiesNetSyncCommand[] Commands;
|
|||
|
}
|
|||
|
}
|