12345678910111213141516171819202122232425262728 |
- #include <iostream>
- #include "GameCore.h"
- using namespace std;
- int main() {
-
- cout << "MetaBalls visualizer starts." << endl;
-
- srand((unsigned int) time(0));
-
- GameCore core;
- if (!core.initialize()){
- cout << "MetaBallVisualizer has encountered a problem." << endl;
- cout << "Ask Jovian to debug his program ..." << endl;
- return 1;
- }
-
- core.start();
-
- return 0;
- }
|