2024-02-15 18:33:05 +00:00
|
|
|
|
using Protocol;
|
|
|
|
|
|
|
|
|
|
namespace GameServer.Settings;
|
2024-02-10 22:28:35 +00:00
|
|
|
|
internal class PlayerStartingValues
|
|
|
|
|
{
|
|
|
|
|
public required string Name { get; set; }
|
2024-02-22 19:32:57 +00:00
|
|
|
|
public required int PlayerLevel { get; set; }
|
2024-02-22 20:09:07 +00:00
|
|
|
|
public required int HeadPhoto { get; set; }
|
|
|
|
|
public required int HeadFrame { get; set; }
|
2024-02-10 22:28:35 +00:00
|
|
|
|
public required int[] Characters { get; set; }
|
2024-02-15 18:33:05 +00:00
|
|
|
|
public required Vector Position { get; set; }
|
2024-02-10 22:28:35 +00:00
|
|
|
|
}
|