Added GasCloud
This commit is contained in:
parent
8b2129f4bc
commit
5cf5d26fe1
1 changed files with 15 additions and 0 deletions
15
src/main/java/cr0s/warpdrive/conf/structures/GasCloud.java
Normal file
15
src/main/java/cr0s/warpdrive/conf/structures/GasCloud.java
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
package cr0s.warpdrive.conf.structures;
|
||||||
|
|
||||||
|
import java.awt.Color;
|
||||||
|
|
||||||
|
public class GasCloud extends Orb {
|
||||||
|
|
||||||
|
private Color color;
|
||||||
|
|
||||||
|
public GasCloud(int diameter, Color color) {
|
||||||
|
super(diameter);
|
||||||
|
|
||||||
|
this.color = color;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue