mirror of
https://github.com/thug1src/thug.git
synced 2024-11-27 10:36:43 +00:00
45 lines
1.4 KiB
C++
45 lines
1.4 KiB
C++
//****************************************************************************
|
|
//* MODULE: Sk/Objects
|
|
//* FILENAME: ped.h
|
|
//* OWNER: Gary Jesdanun
|
|
//* CREATION DATE: 10/15/2000
|
|
//****************************************************************************
|
|
|
|
#ifndef __OBJECTS_PED_H
|
|
#define __OBJECTS_PED_H
|
|
|
|
/*****************************************************************************
|
|
** Includes **
|
|
*****************************************************************************/
|
|
|
|
#include <core/defines.h>
|
|
#include <core/support.h>
|
|
|
|
/*****************************************************************************
|
|
** Defines **
|
|
*****************************************************************************/
|
|
|
|
namespace Script
|
|
{
|
|
class CStruct;
|
|
}
|
|
|
|
namespace Obj
|
|
{
|
|
|
|
class CGeneralManager;
|
|
|
|
/*****************************************************************************
|
|
** Public Prototypes **
|
|
*****************************************************************************/
|
|
|
|
void CreatePed(CGeneralManager* p_obj_man, Script::CStruct* pNodeData);
|
|
|
|
/*****************************************************************************
|
|
** Inline Functions **
|
|
*****************************************************************************/
|
|
|
|
} // namespace Obj
|
|
|
|
#endif // __OBJECTS_PED_H
|