mirror of
https://github.com/Stone-Red-Code/StoneRed.LogicSimulator.git
synced 2026-09-04 09:06:29 +02:00
11 lines
279 B
C#
11 lines
279 B
C#
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;
|
|
} |