DarkflameServer/dScripts/ai/RACING/OBJECTS/FvRacePillarServer.h
David Markowitz 9655f0ee45 make include guards standards conforming
fix compile issues
2024-10-30 00:34:25 -07:00

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