HTMLify

ui.h
Views: 4 | Author: abh
#include "chatbot.h"

typedef enum {
    CHAT_SELECT_PAGE,
    CHATING_PAGE,
} Page;

void draw_chat_select_page(ChatBot chatbots[], int cbc, int selected);

void draw_chatting_page(ChatBot chatbot, char *typed_message, ChatMsg messages[]);

void ui(int cbc, ChatBot chatbots[]);

Comments