Create StoneRed.LogicSimulator.Api project

This commit is contained in:
Stone_Red
2023-10-13 12:24:15 +02:00
parent 4a43a1d2ef
commit 2cd4168cfd
27 changed files with 77 additions and 60 deletions
@@ -0,0 +1,11 @@
using Microsoft.Xna.Framework;
namespace StoneRed.LogicSimulator.Api.Utilities;
internal record LogicGateWorldData
{
public Vector2 Position { get; set; }
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
}