osb/source/game/interfaces/StarEmoteEntity.hpp
2023-06-20 14:33:09 +10:00

19 lines
277 B
C++

#ifndef STAR_EMOTE_ENTITY_HPP
#define STAR_EMOTE_ENTITY_HPP
#include "StarHumanoid.hpp"
#include "StarEntity.hpp"
namespace Star {
STAR_CLASS(EmoteEntity);
class EmoteEntity : public virtual Entity {
public:
virtual void playEmote(HumanoidEmote emote) = 0;
};
}
#endif