ChatMessage
Public member functions
```cpp
// Construct a new Chat Message object
ChatMessage(Room &room, u_int playerId, const std::string &message);
// Get the Time Stamp object
const std::chrono::system_clock::time_point &getTimeStamp() const;
// Get the Player Id object
u_int getPlayerId() const;
// Get the Message object
const std::string &getMessage() const;
```Member functions documentation
Constructor
ChatMessage(Room &room, u_int playerId, const std::string &message);Parameters
getTimeStamp
Returns
getPlayerId
Returns
getMessage
Returns
Last updated