Initial commit

This commit is contained in:
Alexander Kobjolke 2025-03-13 22:36:51 +01:00
commit 4f4397b3e1
48 changed files with 2002 additions and 0 deletions

View file

@ -0,0 +1,26 @@
//
// Created by JoachimWagner on 11.03.2025.
//
#pragma once
#include <string>
#include "Player.h"
namespace atlas::game::player {
template<class BOARD, class TURN>
class AbstractPlayer: public Player<BOARD, TURN>{
public:
explicit AbstractPlayer(const std::string &name) : name(name) {}
const std::string getName() const override{
return name;
}
private:
std::string name;
};
}