Porting in old gamejam code. Removed SOME cruft, more likely remains. Sound + sprite test.

This commit is contained in:
John McCardle 2023-02-24 23:46:34 -05:00
commit d2499a67f8
27 changed files with 1090 additions and 4 deletions

8
src/main.cpp Normal file
View file

@ -0,0 +1,8 @@
#include <SFML/Graphics.hpp>
#include "GameEngine.h"
int main()
{
GameEngine g;
g.run();
}