1#ifndef MAINPROJECT_MOVE_H
2#define MAINPROJECT_MOVE_H
Represents the game board and its functionality.
Definition board.h:21
Class representing a move in the game.
Definition move.h:7
int endY
Definition move.h:52
int endX
Definition move.h:51
int getEndX() const
Get the ending X coordinate of the move.
Definition move.cpp:38
int getEndY() const
Get the ending Y coordinate of the move.
Definition move.cpp:46
Move()
Default constructor for Move class.
Definition move.cpp:6
int startY
Definition move.h:50
int startX
Definition move.h:49
int getStartX() const
Get the starting X coordinate of the move.
Definition move.cpp:22
int getStartY() const
Get the starting Y coordinate of the move.
Definition move.cpp:30