typingPractice.cpp
00001
00002
00003
00004
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