aboutsummaryrefslogtreecommitdiff
path: root/oop2w2/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'oop2w2/main.cpp')
-rw-r--r--oop2w2/main.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/oop2w2/main.cpp b/oop2w2/main.cpp
new file mode 100644
index 0000000..e7e0925
--- /dev/null
+++ b/oop2w2/main.cpp
@@ -0,0 +1,18 @@
+/*
+ * NO NOT ADAPT THIS FILE
+ */
+
+#include "NumberGuessGame.h"
+#include "AutomaticNumberGuesser.h"
+
+
+int main()
+{
+ NumberGuessGame cGame;
+ AutomaticNumberGuesser cGuesser;
+
+ cGame.createNewNumber();
+ cGuesser.process( cGame );
+
+ return 0;
+}