blob: c27bcd400ca4758e86fce702d3e7b5035727dea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* main.cpp
*
* Created on: 11.05.2011
* Author: sven
*/
#ifndef DICESIMCONTROLLER_H_
#include "DiceSimController.h"
#endif
#ifndef _GTKMM_H
#include <gtkmm.h>
#endif
int main(int argc, char* argv[])
{
Gtk::Main kit(argc,argv);
DiceSimController diceSimController;
diceSimController.startApp(kit);
return 0;
}
|