Initial commit
This commit is contained in:
commit
4f4397b3e1
48 changed files with 2002 additions and 0 deletions
17
NimGame/game/nimgame/player/AbstractNimGamePlayer.h
Normal file
17
NimGame/game/nimgame/player/AbstractNimGamePlayer.h
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
//
|
||||
// Created by JoachimWagner on 11.03.2025.
|
||||
//
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include "../../player/AbstractPlayer.h"
|
||||
namespace atlas::game::nimgame::player {
|
||||
|
||||
class AbstractNimGamePlayer: public atlas::game::player::AbstractPlayer<int, int>{
|
||||
|
||||
public:
|
||||
explicit AbstractNimGamePlayer(const std::string &name) : AbstractPlayer(name) {}
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue