Clean up the DinkyECSso that it's easier to understand and more obvious what a fact vs. component is.

This commit is contained in:
Zed A. Shaw 2024-10-29 07:33:00 -04:00
parent 4ed06b10b1
commit 143fe7784c
7 changed files with 82 additions and 105 deletions

View file

@ -7,5 +7,5 @@ struct Combat {
int damage;
bool dead;
int fight(Combat &target);
int attack(Combat &target);
};