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++
//==============================================================================
|
|
//
|
|
// LeaperRagdoll.hpp
|
|
//
|
|
//==============================================================================
|
|
|
|
#ifndef __LEAPER_RAGDOLL_HPP__
|
|
#define __LEAPER_RAGDOLL_HPP__
|
|
|
|
//==============================================================================
|
|
// INCLUDES
|
|
//==============================================================================
|
|
#include "Ragdoll.hpp"
|
|
|
|
//==============================================================================
|
|
// DATA
|
|
//==============================================================================
|
|
|
|
extern ragdoll_def LeaperRagdoll;
|
|
|
|
//==============================================================================
|
|
|
|
#endif // #ifndef __LEAPER_RAGDOLL_HPP__
|