1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-19 19:59:09 +00:00

Finish the port of FeatureLib to CMake

This commit is contained in:
Branan Purvine-Riley
2011-04-08 00:42:40 -07:00
parent ff1320388e
commit 4134a68f2c
281 changed files with 2011 additions and 1166 deletions

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for the BlueSpiral game client
//
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../../pyGlueHelpers.h"
@ -63,4 +63,4 @@ public:
void HitCloth(int clothNum);
};
#endif // pyBlueSpiralGame_h
#endif // pyBlueSpiralGame_h

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for BlueSpiral game messages
//
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../../pyGlueHelpers.h"
@ -150,4 +150,4 @@ public:
bool StartSpin();
};
#endif // pyBlueSpiralMsg_h
#endif // pyBlueSpiralMsg_h

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for the climbing wall game client
//
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../../pyGlueHelpers.h"
@ -69,4 +69,4 @@ public:
void Panic();
};
#endif // pyClimbingWallGame_h
#endif // pyClimbingWallGame_h

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for ClimbingWall game messages
//
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../../pyGlueHelpers.h"
@ -184,4 +184,4 @@ public:
bool LocalOnly() const;
};
#endif // pyClimbingWallMsg_h
#endif // pyClimbingWallMsg_h

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for the Heek game client
//
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../../pyGlueHelpers.h"
@ -66,4 +66,4 @@ public:
void SequenceFinished(int seq);
};
#endif // pyHeekGame_h
#endif // pyHeekGame_h

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for Heek game messages
//
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../../pyGlueHelpers.h"
@ -280,4 +280,4 @@ public:
unsigned long Rank() const;
};
#endif // pyHeekMsg_h
#endif // pyHeekMsg_h

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for the Marker game client
//
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../../pyGlueHelpers.h"
@ -72,4 +72,4 @@ public:
void CaptureMarker(unsigned long markerId);
};
#endif // pyMarkerGame_h
#endif // pyMarkerGame_h

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for Marker game messages
//
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../../pyGlueHelpers.h"
@ -328,4 +328,4 @@ public:
unsigned int Team() const;
};
#endif // pyMarkerMsg_h
#endif // pyMarkerMsg_h

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for the TTT game client
//
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../../pyGlueHelpers.h"
@ -65,4 +65,4 @@ public:
void ShowBoard();
};
#endif // pyTTTGame_h
#endif // pyTTTGame_h

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for TTT game messages
//
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../../pyGlueHelpers.h"
@ -121,4 +121,4 @@ public:
int Col() const;
};
#endif // pyTTTMsg_h
#endif // pyTTTMsg_h

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for the VarSync game client
//
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../../pyGlueHelpers.h"
@ -66,4 +66,4 @@ public:
void CreateNumericVar(std::wstring name, double val);
};
#endif // pyVarSyncGame_h
#endif // pyVarSyncGame_h

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for VarSync game messages
//
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../../pyGlueHelpers.h"
@ -160,4 +160,4 @@ public:
double Value() const;
};
#endif // pyVarSyncMsg_h
#endif // pyVarSyncMsg_h

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for the game client base class
//
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../pyGlueHelpers.h"
@ -81,4 +81,4 @@ public:
PyObject* UpcastToVarSyncGame(); // returns ptVarSyncGame
};
#endif // pyGameCli_h
#endif // pyGameCli_h

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// PURPOSE: Class wrapper for game client messages
//
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../pyGlueHelpers.h"
@ -158,4 +158,4 @@ public:
unsigned long OwnerID() const;
};
#endif // pyGameCliMsg_h
#endif // pyGameCliMsg_h

View File

@ -34,7 +34,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
//
#include "hsStlUtils.h"
#include "../pfGameMgr/pfGameMgr.h"
#include "pfGameMgr/pfGameMgr.h"
#include <python.h>
#include "../pyGlueHelpers.h"
@ -106,4 +106,4 @@ public:
unsigned long NewGameID() const;
};
#endif // pyGameMgrMsg_h
#endif // pyGameMgrMsg_h