mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
23 lines
846 B
C
23 lines
846 B
C
|
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
||
|
|
||
|
// stdafx.h : include file for standard system include files,
|
||
|
// or project specific include files that are used frequently, but
|
||
|
// are changed infrequently
|
||
|
//
|
||
|
|
||
|
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
|
||
|
|
||
|
#include <afxwin.h> // MFC core and standard components
|
||
|
#include <afxext.h> // MFC extensions
|
||
|
#ifndef _AFX_NO_AFXCMN_SUPPORT
|
||
|
#include <afxcmn.h> // MFC support for Windows Common Controls
|
||
|
#endif // _AFX_NO_AFXCMN_SUPPORT
|
||
|
|
||
|
#include <htmlhelp.h>
|
||
|
|
||
|
#define ENGINE_INTERNAL 1
|
||
|
#include <EngineGUI/EngineGUI.h>
|
||
|
#include "Modeler.h"
|
||
|
|
||
|
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
|