Initial Commit

This commit is contained in:
Booklordofthedings 2024-11-11 18:00:37 +01:00
parent fe7eba4573
commit e49dca0403
8 changed files with 436 additions and 0 deletions

9
src/Example/Position.bf Normal file
View file

@ -0,0 +1,9 @@
namespace Theater_ECS.Example;
using System;
struct Position
{
public float x = (.)gRand.NextI32() % 25;
public float y = (.)gRand.NextI32() % 25;
}