Skip to content
Snippets Groups Projects
message.hpp 163 B
#ifndef _MESSAGES_H
#define _MESSAGES_H

struct WordleMessage {

  enum WORDLE_MESSAGE_TYPE { IDENTITY, GUESS, GUESS_RSP };

  WORDLE_MESSAGE_TYPE type;
};
#endif