Files
Ragon/Ragon/Sources/Entity/EntityEvent.cs
T

11 lines
229 B
C#

using Ragon.Common;
namespace Ragon.Core;
public class EntityEvent
{
public ushort PeerId { get; set; }
public ushort EventId { get; set; }
public byte[] EventData { get; set; }
public RagonTarget Target { set; get; }
}