Remove the testrabi folder and fix configurecontrols
Co-authored-by: r3cp3ct <45179536+r3cp3ct@users.noreply.github.com> Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 8.7 KiB |
Before Width: | Height: | Size: 8.0 KiB |
@ -1 +0,0 @@
|
||||
java -jar bin/RabiClone.jar
|
@ -1,3 +0,0 @@
|
||||
cd bin
|
||||
java -cp lib/bin -Djava.library.path="lib" -jar RabiClone.jar
|
||||
cd ..
|
@ -1,3 +0,0 @@
|
||||
cd bin
|
||||
java -jar RabiClone.jar
|
||||
cd ..
|
@ -1,3 +0,0 @@
|
||||
cd bin
|
||||
java -Djava.library.path="lib" -jar RabiClone.jar
|
||||
cd ..
|
Before Width: | Height: | Size: 566 B |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 805 B |
Before Width: | Height: | Size: 477 B |
Before Width: | Height: | Size: 800 B |
Before Width: | Height: | Size: 473 B |
Before Width: | Height: | Size: 782 B |
Before Width: | Height: | Size: 467 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 426 B |
Before Width: | Height: | Size: 425 B |
Before Width: | Height: | Size: 735 B |
@ -16,6 +16,7 @@ import sig.engine.KeyBind;
|
||||
import sig.engine.PaletteColor;
|
||||
import sig.engine.Panel;
|
||||
import sig.engine.String;
|
||||
import sig.engine.Transform;
|
||||
import sig.engine.objects.Object;
|
||||
|
||||
public class ConfigureControls extends Object{
|
||||
@ -153,4 +154,9 @@ public class ConfigureControls extends Object{
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Transform getSpriteTransform() {
|
||||
return Transform.NONE;
|
||||
}
|
||||
|
||||
}
|
||||
|