SpaceCadetPinball/SpaceCadetPinball/pb.h

14 lines
189 B
C
Raw Normal View History

2020-11-06 14:56:32 +01:00
#pragma once
#include "TPinballTable.h"
class pb
{
public:
static void reset_table();
static void firsttime_setup();
2020-11-07 16:41:14 +01:00
static void paint();
2020-11-06 14:56:32 +01:00
private:
static TPinballTable* MainTable;
};