mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-11 20:11:18 +03:00
* Initial commit.
:)
This commit is contained in:
61
source/App/App.cpp
Normal file
61
source/App/App.cpp
Normal file
@@ -0,0 +1,61 @@
|
||||
/********************************************************************
|
||||
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()
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user