diff options
Diffstat (limited to 'example/pong.cpp')
-rw-r--r-- | example/pong.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/example/pong.cpp b/example/pong.cpp index a42bb55..4524869 100644 --- a/example/pong.cpp +++ b/example/pong.cpp @@ -22,7 +22,6 @@ public: sPos getV() { return v; } private: sPos v; - }; class bar : public cObject @@ -50,7 +49,7 @@ public: int main() { - cRender render(' ', _COL_DEFAULT, 10,10); + cRender render(' ', _COL_DEFAULT); cObjectHandler screen(&render); cInput input; @@ -91,7 +90,6 @@ int main() while(1) { - sInputEvent ie = input.poll(); if(ie.type != _EVENT_NULL) |