src/main.cc
author saiam
Sat, 29 Nov 2008 20:59:50 +0000
changeset 136 3a15a5937f7a
parent 0 c8174cf25e06
permissions -rw-r--r--
Moved constants to one header Config.hh, we probably should use somekind of resourcemanager. But do we have time for that? :)
0
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     1
#include "config.h"
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     2
#include <iostream>
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     3
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     4
int main() {
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     5
	std::cout << "Hello from " PROJECT_LONG_NAME " " PROJECT_VERSION << std::endl;
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     6
}
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     7