bullet.cpp 162 B

1234567891011121314151617
  1. #include "bullet.hpp"
  2. void bullet::next_pos()
  3. {
  4. switch(id){
  5. case 2:
  6. y--;
  7. break;
  8. case 8:
  9. case 64:
  10. case 128:
  11. case 512:
  12. y++;
  13. break;
  14. }
  15. }