17 lines
320 B
C#
17 lines
320 B
C#
namespace Client.Domain.ValueObjects
|
|
{
|
|
public class Vector3
|
|
{
|
|
public float X { get; set; }
|
|
public float Y { get; set; }
|
|
public float Z { get; set; }
|
|
|
|
public Vector3(float x, float y, float z)
|
|
{
|
|
X = x;
|
|
Y = y;
|
|
Z = z;
|
|
}
|
|
}
|
|
}
|