6352e8e319
all at once
19 lines
277 B
C++
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
|