@@ -0,0 +1,19 @@
#ifndef BISHOP_H
#define BISHOP_H
#include "piece.h"
class bishop : public piece {
public:
bishop(int x, int y, int team)
{
this->x = x;
this->y = y;
this->team = team;
rank = BISHOP;
}
virtual void move(int, int);
};
#endif // BISHOP_H
The note is not visible to the blocked user.