Files
Ragon/Ragon.Core/Game/EntityEvent.cs
T
2022-12-16 00:05:46 +04:00

11 lines
234 B
C#

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