mirror of
https://github.com/celisej567/mcpe.git
synced 2026-01-06 22:10:04 +03:00
26 lines
353 B
C++
26 lines
353 B
C++
//
|
|
// AppContext.hpp
|
|
// Minecraft
|
|
//
|
|
// Created by Brent on 10/13/23.
|
|
// Copyright (c) 2023 ReMinecraftPE. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "client/app/AppPlatform.hpp"
|
|
|
|
class AppContext
|
|
{
|
|
public:
|
|
AppContext()
|
|
{
|
|
platform = nullptr;
|
|
}
|
|
|
|
AppPlatform *platform;
|
|
std::string doRender;
|
|
};
|