mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2026-02-21 13:41:11 +00:00
14 lines
418 B
Haxe
14 lines
418 B
Haxe
package touch;
|
|
|
|
import touch.TouchInput.Touch;
|
|
import h3d.Vector;
|
|
import hxd.Window;
|
|
import src.ResourceLoader;
|
|
import src.Settings;
|
|
|
|
class RewindButton extends TouchButton {
|
|
public function new() {
|
|
super(ResourceLoader.getImage("data/ui/touch/rewind.png").resource,
|
|
new Vector(Settings.touchSettings.rewindButtonPos[0], Settings.touchSettings.rewindButtonPos[1]), Settings.touchSettings.rewindButtonSize);
|
|
}
|
|
}
|