Theater-ECS/src/Example/Position.bf

9 lines
152 B
Beef
Raw Normal View History

2024-11-11 18:00:37 +01:00
namespace Theater_ECS.Example;
using System;
struct Position
{
public float x = (.)gRand.NextI32() % 25;
public float y = (.)gRand.NextI32() % 25;
}