This commit is contained in:
2025-05-28 09:35:26 -05:00
parent 26419756f3
commit 42c8b93f3e
2 changed files with 6 additions and 1 deletions

4
README.md Normal file
View File

@ -0,0 +1,4 @@
ragavan vs bolt
===============
[this video](https://youtu.be/BAkFMdFsj1U) showed up in my youtube recommendations.
rather than watch it, i decided to attempt to solve the format

3
game.c
View File

@ -54,6 +54,7 @@ int main(int argc, char **argv) {
printf("%d\n", max_life);
Player *stupid_fucking_monkey = new_player(max_life, Ragavan);
Player *sparky = new_player(max_life, Bolt);
free(stupid_fucking_monkey);
free(sparky);
return 0;
}