osb/source/game/interfaces/StarChattyEntity.hpp

21 lines
407 B
C++
Raw Normal View History

2023-06-20 04:33:09 +00:00
#ifndef STAR_CHATTY_ENTITY_HPP
#define STAR_CHATTY_ENTITY_HPP
#include "StarChatAction.hpp"
#include "StarEntity.hpp"
namespace Star {
STAR_CLASS(ChattyEntity);
class ChattyEntity : public virtual Entity {
public:
virtual Vec2F mouthPosition() const { return mouthPosition(true); };
virtual Vec2F mouthPosition(bool) const = 0;
2023-06-20 04:33:09 +00:00
virtual List<ChatAction> pullPendingChatActions() = 0;
};
}
#endif