osb/source/game/interfaces/StarChattyEntity.hpp

18 lines
322 B
C++
Raw Normal View History

#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:
virtual Vec2F mouthPosition() const = 0;
virtual Vec2F mouthPosition(bool) const = 0;
2023-06-20 04:33:09 +00:00
virtual List<ChatAction> pullPendingChatActions() = 0;
};
}