KEngine.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. //---------------------------------------------------------------------------
  2. // Sword3 Engine (c) 1999-2000 by Kingsoft
  3. //
  4. // File: KEngine.h
  5. // Date: 2000.08.08
  6. // Code: WangWei(Daphnis)
  7. // Desc: Header File
  8. //---------------------------------------------------------------------------
  9. #ifndef KEngine_H
  10. #define KEngine_H
  11. //---------------------------------------------------------------------------
  12. #include "KWin32.h"
  13. #include "KDebug.h"
  14. #ifndef _SERVER
  15. #include "KDDraw.h"
  16. #include "KDSound.h"
  17. #include "KDInput.h"
  18. #endif
  19. #include "KFile.h"
  20. #include "KFilePath.h"
  21. #ifndef _SERVER
  22. #include "KFileDialog.h"
  23. #endif
  24. #include "KTimer.h"
  25. #include "KMemBase.h"
  26. #include "KRandom.h"
  27. //#include "KPakList.h"
  28. #include "KPakFile.h"
  29. #include "KIniFile.h"
  30. #ifndef _SERVER
  31. #include "KCanvas.h"
  32. #include "KSprite.h"
  33. #include "KFont.h"
  34. #include "KWin32App.h"
  35. #endif
  36. #include "KList.h"
  37. //---------------------------------------------------------------------------
  38. ENGINE_API BOOL g_InitEngine();
  39. ENGINE_API void g_ExitEngine();
  40. //---------------------------------------------------------------------------
  41. #endif