class Rsrb::Model::ChatMessage

Chat box message

Attributes

color[R]
effects[R]
text[R]

Public Class Methods

new(color, effects, text) click to toggle source
# File lib/rsrb/model/effects.rb, line 30
def initialize(color, effects, text)
  @color = color
  @effects = effects
  @text = text
end