diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2019-03-16 20:37:42 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2019-03-16 20:37:42 +0100 |
commit | f4e7ec209ec70f855999668e58c23b20227da84d (patch) | |
tree | f7e53554aa25015bda05d6d5e6b1b46f3f03b646 /example/pong.cpp | |
parent | 4ed209d756c3cf719d8255c698d7988e85aa746a (diff) | |
download | termgl-f4e7ec209ec70f855999668e58c23b20227da84d.tar.gz |
Fixed examples #4
Diffstat (limited to 'example/pong.cpp')
-rw-r--r-- | example/pong.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/example/pong.cpp b/example/pong.cpp index d93bc1a..568010e 100644 --- a/example/pong.cpp +++ b/example/pong.cpp @@ -7,7 +7,7 @@ class ball : public cObject { public: - ball() : v({1,1}) { setSize(1,1); drawPoint('O', {0,0}, true, _COL_RED); } + ball() : v({1,1}) { setSize(1,1); drawPoint('O', {0,0}, _COL_RED); } ~ball() { destruct(); } virtual bool onCollisionActive(sPos _hit, int _passiveObject) { @@ -28,7 +28,7 @@ private: class bar : public cObject { public: - bar() { setSize(1,5); drawLine('|', {0,0},{0,4}, true, _COL_BLUE);} + bar() { setSize(1,5); drawLine('|', {0,0},{0,4}, _COL_BLUE);} ~bar() { destruct(); } virtual int onCollisionPassive(sPos _hit){ return 2; } virtual bool onCollisionActive(sPos _hit, int _passiveObject){ return true; } @@ -37,7 +37,7 @@ public: class edge : public cObject { public: - edge(unsigned int x, unsigned int y) { setSize(x,y); drawLine('#', {0,0},{(int)x-1,(int)y-1}, true, _COL_DEFAULT);} + edge(unsigned int x, unsigned int y) { setSize(x,y); drawLine('#', {0,0},{(int)x-1,(int)y-1}, _COL_DEFAULT);} ~edge() { destruct(); } virtual int onCollisionPassive(sPos _hit) { |