bubel-ecs/demos/source/gui/system.d
Mergul 74179b4fc8 Demo update
-added 'dot' function to vector math
-fixed Circle tool rendering
-fixed some potentiall memory leaks
-added 'collision' module which now separates ShootGrid from SpaceInvaders demo
-separate some systems from demos to 'basic' module to better demos functionality sharing
-slow down snake
-added new graphics
-BrickBreaker demo now works (without blocks breaking and with bugged collision detection)

-some bug fixes
2020-07-08 22:09:10 +02:00

12 lines
No EOL
164 B
D

module gui.system;
import bubel.ecs.system;
struct SystemGUI
{
const (char)* name;
//System* system;
ushort id;
bool enabled = true;
}