Files
biomed/application.h
2026-02-12 10:51:02 +01:00

11 lines
178 B
C++

#pragma once
namespace Application
{
void Quit();
const bool& ShouldQuit();
void QuitHandler(const char* reply);
bool NeedsUpdate(const char cycles = 2);
void Updated();
}