blob: e1b85bbbd8d5d9129afddd16336ab99810186328 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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;
};
}
|