Starbound/source/game/interfaces/StarEmoteEntity.hpp
2025-03-21 22:23:30 +11:00

18 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