Advertisement
Guest User

Untitled

a guest
Jul 6th, 2022
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. class Bomb
  2. {
  3. public:
  4.     int128 blast;
  5.     int pos;
  6.     int range;
  7.     int owner;
  8.     int turn;
  9.     int realTurn;
  10.     void Chain(Bomb *bombs, int bombCount, int128* blast, int128 blocked, bool explodeArray[]);
  11.     void FutureChain(Bomb* bombs, int bombCount, int128* myBlast, int128* enemyBlast, int128 blocked, bool explodeArray[], int fDepth);
  12.     void Print();
  13.     int128 BlastPattern(int128 blocked);
  14.     Bomb* Clone();
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement