mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-15 04:38:21 +00:00
13 lines
355 B
C
13 lines
355 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
|