spicetools/games/otoca/otoca.h

15 lines
222 B
C
Raw Normal View History

2024-08-28 15:10:34 +00:00
#pragma once
#include "games/game.h"
namespace games::otoca {
class OtocaGame : public games::Game {
public:
OtocaGame();
~OtocaGame() override;
virtual void attach() override;
};
}