Files
mcpe/source/client/app/App.cpp
Brent afe875e4fa iOS Support (#113)
undefined
2024-01-22 17:22:41 +02:00

65 lines
786 B
C++

/********************************************************************
Minecraft: Pocket Edition - Decompilation Project
Copyright (C) 2023 iProgramInCpp
The following code is licensed under the BSD 1 clause license.
SPDX-License-Identifier: BSD-1-Clause
********************************************************************/
#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()
{
}
void App::sizeUpdate(int newWidth, int newHeight)
{
}