mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-28 08:27:22 +00:00
9655f0ee45
fix compile issues
13 lines
352 B
C++
13 lines
352 B
C++
#ifndef FVRACEPILLARSERVER_H
|
|
#define FVRACEPILLARSERVER_H
|
|
|
|
#include "CppScripts.h"
|
|
|
|
class FvRacePillarServer : public virtual CppScripts::Script {
|
|
protected:
|
|
// Plays an animation on all entities in a group with a specific LOT
|
|
void PlayAnimation(const std::string animName, const std::string group, const LOT lot);
|
|
};
|
|
|
|
#endif // FVRACEPILLARSERVER_H
|