osb/source/game/interfaces/StarEmoteEntity.hpp

19 lines
277 B
C++
Raw Normal View History

2023-06-20 04:33:09 +00:00
#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