mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2026-08-15 05:16:36 +00:00
20 lines
261 B
C++
20 lines
261 B
C++
#include "pch.h"
|
|
#include "pb.h"
|
|
#include "render.h"
|
|
|
|
TPinballTable* pb::MainTable = nullptr;
|
|
|
|
void pb::reset_table()
|
|
{
|
|
if (MainTable)
|
|
MainTable->Message(1024, 0.0);
|
|
}
|
|
|
|
|
|
void pb::firsttime_setup()
|
|
{
|
|
render::blit = 0;
|
|
render::update();
|
|
render::blit = 1;
|
|
}
|