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