Skip to content

Instantly share code, notes, and snippets.

@NimbusBP1729
Created February 18, 2014 05:18
Show Gist options
  • Save NimbusBP1729/9065026 to your computer and use it in GitHub Desktop.
Save NimbusBP1729/9065026 to your computer and use it in GitHub Desktop.
package com.badlogic.gdx.utils;
import com.badlogic.gdx.utils.Timer.Task;
public abstract class CallableTask<T> extends Task {
protected T caller;
public CallableTask(T caller) {
this.caller = caller;
}
public T getCaller() {
return caller;
}
public long getExecuteTimeMillis() {
return executeTimeMillis;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment