Theater-ECS/src/Example/Position.bf

9 lines
No EOL
152 B
Beef

namespace Theater_ECS.Example;
using System;
struct Position
{
public float x = (.)gRand.NextI32() % 25;
public float y = (.)gRand.NextI32() % 25;
}