2023-07-30 15:22:02 -04:00
|
|
|
/********************************************************************
|
|
|
|
Minecraft: Pocket Edition - Decompilation Project
|
|
|
|
Copyright (C) 2023 iProgramInCpp
|
2023-08-07 08:48:52 -04:00
|
|
|
|
2023-07-30 15:41:09 -04:00
|
|
|
The following code is licensed under the BSD 1 clause license.
|
|
|
|
SPDX-License-Identifier: BSD-1-Clause
|
2023-07-30 15:22:02 -04:00
|
|
|
********************************************************************/
|
|
|
|
|
|
|
|
#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()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2023-08-06 15:45:15 -04:00
|
|
|
|
|
|
|
void App::sizeUpdate(int newWidth, int newHeight)
|
|
|
|
{
|
|
|
|
}
|