14 lines
185 B
C
14 lines
185 B
C
|
#pragma once
|
||
|
|
||
|
#include "games/game.h"
|
||
|
|
||
|
namespace games::bbc {
|
||
|
|
||
|
class BBCGame : public games::Game {
|
||
|
public:
|
||
|
BBCGame();
|
||
|
|
||
|
virtual void attach() override;
|
||
|
};
|
||
|
}
|