spicetools/games/gitadora/gitadora.h
2022-12-16 23:18:35 +09:00

19 lines
305 B
C++

#pragma once
#include <optional>
#include "games/game.h"
namespace games::gitadora {
// settings
extern bool TWOCHANNEL;
extern std::optional<unsigned int> CAB_TYPE;
class GitaDoraGame : public games::Game {
public:
GitaDoraGame();
virtual void attach();
};
}