spicetools/games/rb/rb.h

18 lines
259 B
C
Raw Permalink Normal View History

2024-08-28 15:10:34 +00:00
#pragma once
#include <cstdint>
#include "games/game.h"
namespace games::rb {
extern uint16_t TOUCH_SCALING;
class RBGame : public games::Game {
public:
RBGame();
virtual void attach();
virtual void detach();
};
}