mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 03:34:18 +03:00
62 lines
721 B
C++
62 lines
721 B
C++
/********************************************************************
|
|
Minecraft: Pocket Edition - Decompilation Project
|
|
Copyright (C) 2023 iProgramInCpp
|
|
|
|
App.cpp
|
|
|
|
The following code is licensed under the following license:
|
|
< no license yet :( >
|
|
********************************************************************/
|
|
|
|
#include "App.hpp"
|
|
|
|
void App::destroy()
|
|
{
|
|
|
|
}
|
|
|
|
void App::draw()
|
|
{
|
|
|
|
}
|
|
|
|
bool App::handleBack(bool b)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void App::init()
|
|
{
|
|
|
|
}
|
|
|
|
void App::loadState(void* a2, int a3)
|
|
{
|
|
|
|
}
|
|
|
|
AppPlatform* App::platform()
|
|
{
|
|
return m_pPlatform;
|
|
}
|
|
|
|
void App::quit()
|
|
{
|
|
m_bWantToQuit = true;
|
|
}
|
|
|
|
bool App::wantToQuit()
|
|
{
|
|
return m_bWantToQuit;
|
|
}
|
|
|
|
void App::saveState(void**, int)
|
|
{
|
|
|
|
}
|
|
|
|
void App::update()
|
|
{
|
|
|
|
}
|