aboutsummaryrefslogtreecommitdiff
path: root/mwe/events/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mwe/events/src/main.cpp')
-rw-r--r--mwe/events/src/main.cpp18
1 files changed, 1 insertions, 17 deletions
diff --git a/mwe/events/src/main.cpp b/mwe/events/src/main.cpp
index 03dff16..8fd6d10 100644
--- a/mwe/events/src/main.cpp
+++ b/mwe/events/src/main.cpp
@@ -40,7 +40,7 @@ void onKeyPressed(const KeyPressedEvent& e)
fprintf(stderr,"second function KeyCode %d\n",keyCode);
}
void CollisionHandler(const CollisionEvent& e){
- std::cout << "collision betwee object id: "<< e.getCollisionData().objectIdA << " and id: " << e.getCollisionData().objectIdB << std::endl;
+ std::cout << "collision between object id: "<< e.getCollisionData().objectIdA << " and id: " << e.getCollisionData().objectIdB << std::endl;
}
void testCollisionEvent() {
Collision testCollision(1, 2, {3, 4}, {5, 6}, 7.8f);
@@ -69,19 +69,3 @@ int main(int argc, char * args[]) {
gameLoop.loop();
return 0;
}
-// void collisionUpdate(){
-// int count;
-// //iedere collision
-// for (int i = 0; i < count; i++)
-// {
-// //trigger object 1
-// //triger object 2
-// triggerEvent(CollisionEvent(1,2),1);
-// triggerEvent(CollisionEvent(1,2),2);
-// }
-
-// }
-// int main(){
-
-// return 0;
-// }