10 lines
109 B
C++
10 lines
109 B
C++
#include <cstdlib>
|
|
|
|
#include "queen.h"
|
|
|
|
void queen::move(int x, int y)
|
|
{
|
|
this->x = x;
|
|
this->y = y;
|
|
}
|