
org.powerscala.Updatable.scala Maven / Gradle / Ivy
The newest version!
package org.powerscala
/**
* Updatable represents a class that gets updated with the delta between the last update and the
* current update.
*
* @author Matt Hicks
*/
trait Updatable {
/**
* Invoked with the amount of time that has elapsed since the last call of this method in seconds.
*/
def update(delta: Double) = {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy