feat: create window client app
This commit is contained in:
16
Client/Domain/ValueObjects/Vector3.cs
Normal file
16
Client/Domain/ValueObjects/Vector3.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user