Created
February 18, 2014 05:18
-
-
Save NimbusBP1729/9065026 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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