mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
13 lines
302 B
Haxe
13 lines
302 B
Haxe
package touch;
|
|
|
|
import touch.TouchInput.Touch;
|
|
import h3d.Vector;
|
|
import hxd.Window;
|
|
import src.ResourceLoader;
|
|
import src.Settings;
|
|
|
|
class JumpButton extends TouchButton {
|
|
public function new() {
|
|
super(ResourceLoader.getImage("data/ui/touch/up-arrow.png").resource, new Vector(440, 320), 60);
|
|
}
|
|
}
|