mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-03 12:28:03 +08:00
bump version + formatting
This commit is contained in:
@ -1,4 +1,3 @@
|
||||
|
||||
/// Simple utility class that helps handling time counting and implementing interval like events.
|
||||
///
|
||||
class Timer {
|
||||
@ -8,7 +7,7 @@ class Timer {
|
||||
double _current = 0;
|
||||
bool _running = false;
|
||||
|
||||
Timer(this._limit, { bool repeat = false, void Function() callback }) {
|
||||
Timer(this._limit, {bool repeat = false, void Function() callback}) {
|
||||
_repeat = repeat;
|
||||
_callback = callback;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user