9 lines
152 B
Beef
9 lines
152 B
Beef
|
namespace Theater_ECS.Example;
|
||
|
|
||
|
using System;
|
||
|
|
||
|
struct Position
|
||
|
{
|
||
|
public float x = (.)gRand.NextI32() % 25;
|
||
|
public float y = (.)gRand.NextI32() % 25;
|
||
|
}
|