18 lines
322 B
C++
18 lines
322 B
C++
#pragma once
|
|
|
|
#include "StarChatAction.hpp"
|
|
#include "StarEntity.hpp"
|
|
|
|
namespace Star {
|
|
|
|
STAR_CLASS(ChattyEntity);
|
|
|
|
class ChattyEntity : public virtual Entity {
|
|
public:
|
|
virtual Vec2F mouthPosition() const = 0;
|
|
virtual Vec2F mouthPosition(bool) const = 0;
|
|
virtual List<ChatAction> pullPendingChatActions() = 0;
|
|
};
|
|
|
|
}
|