15 lines
284 B
C#
15 lines
284 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace RPG.GameCore.Level;
|
|
|
|
public class MVector3
|
|
{
|
|
[JsonPropertyName("x")]
|
|
public float X { get; set; }
|
|
|
|
[JsonPropertyName("y")]
|
|
public float Y { get; set; }
|
|
|
|
[JsonPropertyName("z")]
|
|
public float Z { get; set; }
|
|
}
|