class TungstenEngine::Core::GameTime

Structure holding the times passed since the game started and since the last game loop ran

Attributes

elapsed[R]
running_slow[R]
total[R]

Public Class Methods

new(total, elapsed, running_slow) click to toggle source
# File lib/core/game_time.rb, line 9
def initialize(total, elapsed, running_slow)
  @total = total
  @elapsed = elapsed
  @running_slow = running_slow
end