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

17
NimGame/game/Game.h Normal file
View file

@ -0,0 +1,17 @@
//
// Created by JoachimWagner on 10.03.2025.
//
#pragma once
namespace atlas::game {
class Game {
public:
Game() = default;
virtual ~Game() = default;
virtual void play() = 0;
};
} // game