mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 10:37:41 -04:00
Precompiled Headers for pfPython
Also did some work on decreasing header bloat. No promises on a complete job--this was just enough to allow PCH to actually help us out (and boy does it!) With an Intel Core 2 Duo (4GB DDR2 800) With PCH: 50.51 seconds Without: 4 minutes, 17.14 seconds :D
This commit is contained in:
@ -39,7 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include "../../pyKey.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyBlueSpiralGame.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -48,13 +48,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// PURPOSE: Class wrapper for the BlueSpiral game client
|
||||
//
|
||||
#include <Python.h>
|
||||
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../../pyGlueHelpers.h"
|
||||
#include "../pyGameCli.h"
|
||||
#include "../../pyKey.h"
|
||||
|
||||
class pyBlueSpiralGame : public pyGameCli
|
||||
{
|
||||
|
@ -39,10 +39,14 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyBlueSpiralGame.h"
|
||||
|
||||
#include <Python.h>
|
||||
#include "../../pyKey.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyBlueSpiralGame.h"
|
||||
#include "../../pyEnum.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -39,7 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyBlueSpiralMsg.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -48,9 +48,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// PURPOSE: Class wrapper for BlueSpiral game messages
|
||||
//
|
||||
#include <Python.h>
|
||||
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../../pyGlueHelpers.h"
|
||||
#include "../pyGameCliMsg.h"
|
||||
|
@ -39,10 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyBlueSpiralMsg.h"
|
||||
#include "../../pyEnum.h"
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyBlueSpiralMsg.h"
|
||||
#include "../../pyEnum.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -39,7 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include "../../pyKey.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyClimbingWallGame.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -48,13 +48,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// PURPOSE: Class wrapper for the climbing wall game client
|
||||
//
|
||||
#include <Python.h>
|
||||
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../../pyGlueHelpers.h"
|
||||
#include "../pyGameCli.h"
|
||||
#include "../../pyKey.h"
|
||||
|
||||
class pyClimbingWallGame : public pyGameCli
|
||||
{
|
||||
|
@ -39,10 +39,14 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyClimbingWallGame.h"
|
||||
|
||||
#include <Python.h>
|
||||
#include "../../pyKey.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyClimbingWallGame.h"
|
||||
#include "../../pyEnum.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -39,7 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyClimbingWallMsg.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -48,9 +48,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// PURPOSE: Class wrapper for ClimbingWall game messages
|
||||
//
|
||||
#include <Python.h>
|
||||
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../../pyGlueHelpers.h"
|
||||
#include "../pyGameCliMsg.h"
|
||||
|
@ -39,10 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyClimbingWallMsg.h"
|
||||
#include "../../pyEnum.h"
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyClimbingWallMsg.h"
|
||||
#include "../../pyEnum.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -39,7 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include "../../pyKey.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyHeekGame.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -49,12 +49,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
// PURPOSE: Class wrapper for the Heek game client
|
||||
//
|
||||
|
||||
#include <Python.h>
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../../pyGlueHelpers.h"
|
||||
#include "../pyGameCli.h"
|
||||
#include "../../pyKey.h"
|
||||
|
||||
class pyHeekGame : public pyGameCli
|
||||
{
|
||||
|
@ -39,10 +39,14 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyHeekGame.h"
|
||||
|
||||
#include <Python.h>
|
||||
#include "../../pyKey.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyHeekGame.h"
|
||||
#include "../../pyEnum.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -39,7 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyHeekMsg.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -48,9 +48,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// PURPOSE: Class wrapper for Heek game messages
|
||||
//
|
||||
#include <Python.h>
|
||||
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../../pyGlueHelpers.h"
|
||||
#include "../pyGameCliMsg.h"
|
||||
|
@ -39,10 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyHeekMsg.h"
|
||||
#include "../../pyEnum.h"
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyHeekMsg.h"
|
||||
#include "../../pyEnum.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -39,7 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include <Python.h>
|
||||
#include "../../pyKey.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyMarkerGame.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -48,13 +48,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// PURPOSE: Class wrapper for the Marker game client
|
||||
//
|
||||
#include <Python.h>
|
||||
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../../pyGlueHelpers.h"
|
||||
#include "../pyGameCli.h"
|
||||
#include "../../pyKey.h"
|
||||
|
||||
class pyMarkerGame : public pyGameCli
|
||||
{
|
||||
|
@ -39,10 +39,14 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyMarkerGame.h"
|
||||
|
||||
#include <Python.h>
|
||||
#include "../../pyKey.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyMarkerGame.h"
|
||||
#include "../../pyEnum.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -39,7 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyMarkerMsg.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -48,9 +48,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// PURPOSE: Class wrapper for Marker game messages
|
||||
//
|
||||
#include <Python.h>
|
||||
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../../pyGlueHelpers.h"
|
||||
#include "../pyGameCliMsg.h"
|
||||
|
@ -39,10 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyMarkerMsg.h"
|
||||
#include "../../pyEnum.h"
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyMarkerMsg.h"
|
||||
#include "../../pyEnum.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -39,7 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include "../../pyKey.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyTTTGame.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -48,13 +48,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// PURPOSE: Class wrapper for the TTT game client
|
||||
//
|
||||
#include <Python.h>
|
||||
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../../pyGlueHelpers.h"
|
||||
#include "../pyGameCli.h"
|
||||
#include "../../pyKey.h"
|
||||
|
||||
class pyTTTGame : public pyGameCli
|
||||
{
|
||||
|
@ -39,10 +39,14 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyTTTGame.h"
|
||||
|
||||
#include <Python.h>
|
||||
#include "../../pyKey.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyTTTGame.h"
|
||||
#include "../../pyEnum.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -39,7 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyTTTMsg.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -48,9 +48,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// PURPOSE: Class wrapper for TTT game messages
|
||||
//
|
||||
#include <Python.h>
|
||||
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../../pyGlueHelpers.h"
|
||||
#include "../pyGameCliMsg.h"
|
||||
|
@ -39,10 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyTTTMsg.h"
|
||||
#include "../../pyEnum.h"
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyTTTMsg.h"
|
||||
#include "../../pyEnum.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -39,7 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include "../../pyKey.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyVarSyncGame.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -48,13 +48,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// PURPOSE: Class wrapper for the VarSync game client
|
||||
//
|
||||
#include <Python.h>
|
||||
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../../pyGlueHelpers.h"
|
||||
#include "../pyGameCli.h"
|
||||
#include "../../pyKey.h"
|
||||
|
||||
class pyVarSyncGame : public pyGameCli
|
||||
{
|
||||
|
@ -39,10 +39,14 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyVarSyncGame.h"
|
||||
|
||||
#include <Python.h>
|
||||
#include "../../pyKey.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyVarSyncGame.h"
|
||||
#include "../../pyEnum.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -39,7 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyVarSyncMsg.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -48,9 +48,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// PURPOSE: Class wrapper for VarSync game messages
|
||||
//
|
||||
#include <Python.h>
|
||||
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../../pyGlueHelpers.h"
|
||||
#include "../pyGameCliMsg.h"
|
||||
|
@ -39,10 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyVarSyncMsg.h"
|
||||
#include "../../pyEnum.h"
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyVarSyncMsg.h"
|
||||
#include "../../pyEnum.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -39,7 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include <Python.h>
|
||||
#include "../pyKey.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyGameCli.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "TicTacToe/pyTTTGame.h"
|
||||
#include "Heek/pyHeekGame.h"
|
||||
|
@ -49,11 +49,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
// PURPOSE: Class wrapper for the game client base class
|
||||
//
|
||||
|
||||
#include <Python.h>
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../pyGlueHelpers.h"
|
||||
#include "../pyKey.h"
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
class pfGameCli;
|
||||
|
||||
class pyGameCli
|
||||
{
|
||||
|
@ -39,10 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyGameCli.h"
|
||||
#include "../pyEnum.h"
|
||||
|
||||
#include <Python.h>
|
||||
#include "../pyKey.h"
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyGameCli.h"
|
||||
#include "../pyEnum.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -39,9 +39,14 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyGameCliMsg.h"
|
||||
#include "pyGameCli.h"
|
||||
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
#include "TicTacToe/pyTTTMsg.h"
|
||||
#include "Heek/pyHeekMsg.h"
|
||||
#include "Marker/pyMarkerMsg.h"
|
||||
|
@ -48,11 +48,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// PURPOSE: Class wrapper for game client messages
|
||||
//
|
||||
#include <Python.h>
|
||||
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../pyGlueHelpers.h"
|
||||
#include "pnGameMgr/pnGameMgr.h" // :(
|
||||
|
||||
class pfGameCliMsg;
|
||||
|
||||
class pyGameCliMsg
|
||||
{
|
||||
|
@ -39,10 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyGameCliMsg.h"
|
||||
#include "../pyEnum.h"
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
#include "pyGameCliMsg.h"
|
||||
#include "../pyEnum.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -39,7 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyGameMgrMsg.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -49,11 +49,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
// PURPOSE: Class wrapper for game manager messages
|
||||
//
|
||||
|
||||
#include <Python.h>
|
||||
#include "hsStlUtils.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
|
||||
#include "../pyGlueHelpers.h"
|
||||
#include <string>
|
||||
|
||||
class pfGameMgrMsg;
|
||||
|
||||
class pyGameMgrMsg
|
||||
{
|
||||
|
@ -39,10 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "pyGameMgrMsg.h"
|
||||
#include "../pyEnum.h"
|
||||
|
||||
#include <Python.h>
|
||||
#pragma hdrstop
|
||||
|
||||
#include "pyGameMgrMsg.h"
|
||||
#include "pfGameMgr/pfGameMgr.h"
|
||||
#include "../pyEnum.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
Reference in New Issue
Block a user