1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-11-17 23:20:19 +01:00
SpaceCadetPinball/SpaceCadetPinball/pb.cpp
oz a925b6137f winmain v2.
FuncStats doc.
2020-11-07 18:41:14 +03:00

24 lines
No EOL
300 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;
}
void pb::paint()
{
render::paint();
}