namespace Theater_ECS.Example; using System; struct Position { public float x = (.)gRand.NextI32() % 25; public float y = (.)gRand.NextI32() % 25; public void Update(float a, float b) mut { x += a; y += b; } }