mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
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
19 lines
582 B
C#
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; }
|
|
}
|
|
}
|