typingPractice.cpp

00001 /*
00002   下の句タイピング
00003   Satofumi KAMIMURA
00004   $Id$
00005 */
00006 
00007 #include "typingPractice.h"
00008 
00009 
00010 TypingPractice::TypingPractice(void) {
00011 }
00012 
00013 
00014 TypingPractice::~TypingPractice(void) {
00015   // !!! 資源の解放
00016 }
00017 
00018 
00019 int TypingPractice::Initialize(int argc, char *argv[]) {
00020   win->clear(ForeDepth);
00021 
00022   // 資源の生成
00023   // !!!
00024 
00025   return 0;
00026 }
00027 
00028 
00029 int TypingPractice::MainLoop(void) {
00030 
00031   bool quit = false;
00032   do {
00033     win->lock();
00034 
00035     UserInput::userInput_t ui = UserInput::getInputed();
00036     quit = ui.quit | ui.isPressedCode(SDLK_ESCAPE);
00037     win->unlock();
00038 
00039     SDL_Delay(10);
00040   } while (!quit);
00041 
00042   return 0;
00043 }
00044 

Generated on Mon Apr 13 22:52:03 2009 by  doxygen 1.5.7.1