Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. for(int i = 0; i < count; i++)
  2. {
  3. for(int j = 0; j < count; j++)
  4. {
  5. if(i != j)
  6. {
  7. if(vbot[i]->CollidedWith(vbot[j]))
  8. {
  9.  
  10. vbot[i]->DoBattleWith(vbot[j]);
  11. }
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement