mirror of
https://github.com/ProjectDreamland/area51.git
synced 2024-11-01 03:01:49 +01:00
23 lines
782 B
C++
23 lines
782 B
C++
//==============================================================================
|
|
//
|
|
// PlayerRagdoll.hpp
|
|
//
|
|
//==============================================================================
|
|
|
|
#ifndef __PLAYER_RAGDOLL_HPP__
|
|
#define __PLAYER_RAGDOLL_HPP__
|
|
|
|
//==============================================================================
|
|
// INCLUDES
|
|
//==============================================================================
|
|
#include "Ragdoll.hpp"
|
|
|
|
//==============================================================================
|
|
// DATA
|
|
//==============================================================================
|
|
|
|
extern ragdoll_def PlayerRagdoll;
|
|
|
|
//==============================================================================
|
|
|
|
#endif // #ifndef __HAZMAT_RAGDOLL_HPP__
|