DEADSOFTWARE

Complete game save
[cavedroid.git] / core / src / ru / deadsoftware / cavecraft / menu / objects / Button.java
index b6810a704547ddda85a72200e8559a94473b0c04..d08370ef8506b3fa0b8d369dca58b0c83a5b5b45 100644 (file)
@@ -18,6 +18,10 @@ public class Button {
         this(label, x, y, width, heigth, 1);
     }
 
+    public Button(String label, float x, float y, int type) {
+        this(label, x, y, 200, 20, type);
+    }
+
     public Button(String label, float x, float y) {
         this(label, x, y, 200, 20, 1);
     }