mirror of
https://github.com/spicetools/spicetools.git
synced 2026-04-14 13:46:16 -05:00
19 lines
305 B
C++
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();
|
|
};
|
|
}
|