nexusforever/Source/NexusForever.Database.Character/Model/CharacterCreateModel.cs
Kirmmin 8405f9a4b4 Player/Create: Starting Locations, Boost Support
All locations were pulled from live logs.
Modifiable locations to support custom starting locations
Boost is supported but tokens are disabled, still, due to needing bag support added

Player/Create: Fix Starting Location positions & rotations
2021-09-06 07:23:21 -07:00

19 lines
582 B
C#

using System.Collections.Generic;
namespace NexusForever.Database.Character.Model
{
public class CharacterCreateModel
{
public byte Race { get; set; }
public byte CreationStart { get; set; }
public ushort Faction { get; set; }
public uint WorldId { get; set; }
public float X { get; set; }
public float Y { get; set; }
public float Z { get; set; }
public float Rx { get; set; }
public float Ry { get; set; }
public float Rz { get; set; }
public string Comment { get; set; }
}
}