Files
Ragon/Ragon/Sources/Player/Player.cs
T
2022-08-28 00:18:26 +04:00

16 lines
336 B
C#
Executable File

using System;
using System.Collections.Generic;
namespace Ragon.Core
{
public class Player
{
public string Id { get; set; }
public uint PeerId { get; set; }
public string PlayerName { get; set; }
public bool IsLoaded { get; set; }
public List<Entity> Entities;
public List<ushort> EntitiesIds;
}
}