Created
September 3, 2015 12:54
-
-
Save chadfurman/6957b56b706abb424a5c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TextMessage extends Message | |
# Represents an incoming message from the chat. | |
# | |
# user - A User instance that sent the message. | |
# text - A String message. | |
# id - A String of the message ID. | |
constructor: (@user, @text, @id) -> | |
super @user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment