mirror of
https://github.com/edubart/otclient.git
synced 2025-10-17 04:53:27 +02:00
Rework application class and framework
Make otclient's framework flexible enough to run console apps like servers, so this mean is possible to build otclient versions without graphical interface and use it's framework to code servers
This commit is contained in:
@@ -24,7 +24,7 @@
|
||||
|
||||
#include "crashhandler.h"
|
||||
#include <framework/global.h>
|
||||
#include <framework/application.h>
|
||||
#include <framework/core/application.h>
|
||||
|
||||
#ifndef __USE_GNU
|
||||
#define __USE_GNU
|
||||
|
@@ -24,7 +24,7 @@
|
||||
|
||||
#include "crashhandler.h"
|
||||
#include <framework/global.h>
|
||||
#include <framework/application.h>
|
||||
#include <framework/core/application.h>
|
||||
|
||||
#include <windows.h>
|
||||
#include <process.h>
|
||||
|
@@ -24,8 +24,8 @@
|
||||
|
||||
#include "win32window.h"
|
||||
|
||||
#include <framework/application.h>
|
||||
#include <framework/thirdparty/apngloader.h>
|
||||
#include <framework/core/application.h>
|
||||
#include <framework/graphics/apngloader.h>
|
||||
#include <framework/core/resourcemanager.h>
|
||||
|
||||
#define HSB_BIT_SET(p, n) (p[(n)/8] |= (128 >>((n)%8)))
|
||||
|
@@ -24,7 +24,7 @@
|
||||
|
||||
#include "x11window.h"
|
||||
#include <framework/core/resourcemanager.h>
|
||||
#include <framework/thirdparty/apngloader.h>
|
||||
#include <framework/graphics/apngloader.h>
|
||||
|
||||
#define LSB_BIT_SET(p, n) (p[(n)/8] |= (1 <<((n)%8)))
|
||||
|
||||
|
Reference in New Issue
Block a user