mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 18:03:37 +00:00
14 lines
367 B
C++
14 lines
367 B
C++
#pragma once
|
|
#include "ZombieModel.h"
|
|
|
|
class SkeletonModel : public ZombieModel {
|
|
private:
|
|
void _init(float g);
|
|
|
|
public:
|
|
SkeletonModel();
|
|
SkeletonModel(float g);
|
|
virtual void setupAnim(float time, float r, float bob, float yRot,
|
|
float xRot, float scale,
|
|
unsigned int uiBitmaskOverrideAnim = 0);
|
|
}; |