16 lines
222 B
C++
16 lines
222 B
C++
#pragma once
|
|
|
|
#include "StarHumanoid.hpp"
|
|
#include "StarEntity.hpp"
|
|
|
|
namespace Star {
|
|
|
|
STAR_CLASS(EmoteEntity);
|
|
|
|
class EmoteEntity : public virtual Entity {
|
|
public:
|
|
virtual void playEmote(HumanoidEmote emote) = 0;
|
|
};
|
|
|
|
}
|