extern.h
上传用户:maxiaolivb
上传日期:2022-06-07
资源大小:915k
文件大小:1k
- #ifndef EXTERN_H
- #define EXTERN_H
- #pragma once
- #define LOWORDINT(n) ((int)((signed short)(LOWORD(n))))
- #define HIWORDINT(n) ((int)((signed short)(HIWORD(n))))
- #define DELETE_OBJECT(p) {if(p){delete p;p=NULL;}};
- ////////////////////////////////游戏框架定义////////////////////////////////
- #include "define.h"
- #include "GameClient.h"
- ////////////////////////////////游戏内部定义////////////////////////////////
- #include "Game/GameDefine.h"
- ////////////////////////////////游戏全局数据////////////////////////////////
- extern class HGE_Impl* g_pHGE; //引擎
- extern class hgeFont* g_pFont; //英文字体
- extern class hgeFontCN* g_pFontCN; //中文字体
- extern class GameFrame* g_pGameFrame; //游戏主框架
- extern class EditCtrl* g_pEditCtrl; //编辑控件
- #endif