-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
36 lines (30 loc) · 767 Bytes
/
main.cpp
File metadata and controls
36 lines (30 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "GameController.h"
#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
#include <ctime>
using namespace std;
const string assetDirectory = "Assets";
class GameWorld;
GameWorld* createStudentWorld(string assetDir = "");
int main(int argc, char* argv[])
{
{
string path = assetDirectory;
if (!path.empty())
path += '/';
const string someAsset = "dig1.tga";
ifstream ifs(path + someAsset);
if (!ifs)
{
cout << "Cannot find " << someAsset << " in ";
cout << (assetDirectory.empty() ? "current directory"
: assetDirectory) << endl;
return 1;
}
}
srand(static_cast<unsigned int>(time(nullptr)));
GameWorld* gw = createStudentWorld(assetDirectory);
Game().run(argc, argv, gw, "TunnelMan");
}