class SSCBot::ChatLog::KillMessage
@author Jonathan Bradley Whited @since 0.1.0
Attributes
bounty[R]
killed[R]
killer[R]
Public Class Methods
new(line,killed:,bounty:,killer:)
click to toggle source
Calls superclass method
SSCBot::ChatLog::Message::new
# File lib/ssc.bot/chat_log/messages.rb, line 67 def initialize(line,killed:,bounty:,killer:) super(line,type: :kill) @bounty = bounty @killed = killed @killer = killer end