You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
500 B
19 lines
500 B
package sig.modules.RabiRace;
|
|
|
|
import java.awt.Rectangle;
|
|
import java.awt.event.MouseEvent;
|
|
|
|
import sig.Module;
|
|
import sig.modules.RabiRaceModule;
|
|
import sig.modules.Controller.ClickableButton;
|
|
|
|
public class CreateButton extends ClickableButton{
|
|
|
|
public CreateButton(Rectangle position, String button_label, Module parent_module) {
|
|
super(position, button_label, parent_module);
|
|
}
|
|
|
|
public void onClickEvent(MouseEvent ev) {
|
|
RabiRaceModule.createwindow.setVisible(true);
|
|
}
|
|
}
|
|
|