forked from lanmonster/frogger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.cpp
36 lines (25 loc) · 873 Bytes
/
Main.cpp
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
/*
$file: Frogger Remake ( For the console)
$purpose: Game entry point
$author: Kyle Lanmon / Michael Boyle (Softrix)
History:
Rewritten welcome screen to remove external file requirement.
Rewritten Log code to support different size logs, different colours and speeds.
Rewritten Car code to support different size cars/trucks, different colours and speeds.
Optimised code in several areas.
Fixed several compiler warnings.
Written Frog->Car collision code
Todo:
collision with logs = ride with log until move up or down off the log
test for non collision of logs, i.e. drop in water = 1 less life.
test for win zones (and all zones completed = win)
score increase on successful zone.
*/
#include <iostream>
#include "Frogger.h"
int main()
{
Engine Frogger;
Frogger.Run();
return 0;
}