Commented out the MCE_ loggers for now, it will be fixed later

This commit is contained in:
Joud Kandeel
2026-03-06 20:05:03 +01:00
parent 1b50522eb1
commit 3523ea951e

View File

@@ -6,14 +6,14 @@
namespace mce {
Minecraft::Minecraft() : window(sf::VideoMode({1280, 720}), "Minecraft: Community Edition") {
MCE_INFO("Starting MCE");
//MCE_INFO("Starting MCE");
graphicsContext = GraphicsContext::create(GraphicsContext::API::OpenGL);
renderer = graphicsContext->createRenderer(window);
MCE_INFO("Done");
//MCE_INFO("Done");
}
Minecraft::~Minecraft() {
MCE_INFO("Shutting down");
//MCE_INFO("Shutting down");
}
void Minecraft::run() {