15 lines
348 B
C++
15 lines
348 B
C++
#ifndef AI_CHAT_DISPLAY_H
|
|
#define AI_CHAT_DISPLAY_H
|
|
|
|
#include "display.h"
|
|
|
|
class AiChatDisplay : public Display {
|
|
public:
|
|
AiChatDisplay();
|
|
void SetStatus(const char* status) override;
|
|
void SetEmotion(const char* emotion) override;
|
|
void SetChatMessage(const char* role, const char* content) override;
|
|
};
|
|
|
|
#endif // AI_CHAT_DISPLAY_H
|