2024-02-25 14:46:47 +00:00
|
|
|
#pragma once
|
2023-06-20 04:33:09 +00:00
|
|
|
|
|
|
|
#include "StarChatAction.hpp"
|
|
|
|
#include "StarEntity.hpp"
|
|
|
|
|
|
|
|
namespace Star {
|
|
|
|
|
|
|
|
STAR_CLASS(ChattyEntity);
|
|
|
|
|
|
|
|
class ChattyEntity : public virtual Entity {
|
|
|
|
public:
|
2023-06-29 00:11:19 +00:00
|
|
|
virtual Vec2F mouthPosition() const = 0;
|
2023-06-26 14:42:07 +00:00
|
|
|
virtual Vec2F mouthPosition(bool) const = 0;
|
2023-06-20 04:33:09 +00:00
|
|
|
virtual List<ChatAction> pullPendingChatActions() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|