00001 /* 00002 * Neural Networks Tearm Project 00003 * Martin Johne 00004 * 04.10.2006 00005 */ 00006 #pragma once 00007 #include <irrlicht.h> 00008 #include "Muele.h" 00009 00011 class CAICompetitionWindow 00012 { 00013 public: 00014 00015 // methods 00016 00017 CAICompetitionWindow(CMuele *pMueleClass); 00018 ~CAICompetitionWindow(void); 00019 00021 void toggleVisiblility(); 00023 void onGuiEvent(SEvent &event); 00025 void competition(); 00026 00027 private: 00028 00029 CMuele *pMuele; 00030 gui::IGUIWindow *pWindow; 00031 gui::IGUIStaticText *pTextPlayer1, *pTextPlayer2, *pTextDraw; 00032 };