mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 13:41:13 +00:00
10 lines
91 B
C++
10 lines
91 B
C++
#include "Player.h"
|
|
|
|
Player::Player(char symb) : symbol(symb) {
|
|
|
|
}
|
|
|
|
Player::~Player() {
|
|
|
|
}
|