5 lines
108 B
C#
5 lines
108 B
C#
namespace SpaceGame.Simulation.Api.Contracts;
|
|
|
|
public sealed record Vector3Dto(float X, float Y, float Z);
|
|
|