12 lines
294 B
Java
12 lines
294 B
Java
|
|
package com.alttd.gui.windows;
|
||
|
|
|
||
|
|
import com.alttd.gui.DefaultGUI;
|
||
|
|
import com.alttd.objects.APartType;
|
||
|
|
import net.kyori.adventure.text.Component;
|
||
|
|
|
||
|
|
public class ChooseParticleGUI extends DefaultGUI {
|
||
|
|
public ChooseParticleGUI(APartType aPartType, Component name) {
|
||
|
|
super(name);
|
||
|
|
}
|
||
|
|
}
|