class EaseEngine::Timer::Info

Attributes

arg[RW]
callback[RW]
end_time_usec[RW]

Public Class Methods

new( end_time_usec, arg, callback ) click to toggle source
# File lib/ease_engine/timer.rb, line 8
def initialize( end_time_usec, arg, callback )
  @end_time_usec = end_time_usec
  @arg = arg
  @callback = callback
end