예제 #1
0
파일: p04.cpp 프로젝트: Boza-s6/cppcon2014
 void update()
 {
     // Before moving the paddle, we'll process player input,
     // changing the paddle's velocity.
     processPlayerInput();
     shape.move(velocity);
 }
예제 #2
0
 void update()
 {
     processPlayerInput();
     shape.move(velocity);
 }