implement most of grids api methods

This commit is contained in:
zznty
2023-01-24 18:27:32 +07:00
parent 495d299c00
commit f66489ae9b
11 changed files with 165 additions and 12 deletions

View File

@@ -0,0 +1,6 @@
namespace TorchRemote.Models.Shared;
public record Vector3(float X, float Y, float Z)
{
public static Vector3 Zero => new Vector3(0, 0, 0);
}