init commit

This commit is contained in:
bMorgan01 2020-10-09 11:03:52 -06:00
commit e7d0002ca7
79 changed files with 1705 additions and 0 deletions

29
main.cpp Normal file
View file

@ -0,0 +1,29 @@
#include <iostream> // for standard input/output
#include <random>
using namespace std; // using the standard namespace
#include <SFML/Graphics.hpp> // include the SFML Graphics Library
#include <SFML/Audio.hpp>
#include "Collision.h"
using namespace sf; // using the sf namespace
#include "MySprite.h"
#include "Ship.h"
#include "Asteroid.h"
#include "Menu.h"
#include "Game.h"
int main() {
bool play = true;
while (play) {
Menu menu;
if (menu.result == EXIT_SUCCESS) {
Game game;
if (game.result == 1) play = false;
}
else play = false;
}
return 0;
}