mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
16 lines
312 B
Java
16 lines
312 B
Java
package com.hbm.entity.effect;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
public class EntityNukeCloudNoShroom extends EntityNukeCloudSmall {
|
|
|
|
public EntityNukeCloudNoShroom(World p_i1582_1_) {
|
|
super(p_i1582_1_);
|
|
}
|
|
|
|
public EntityNukeCloudNoShroom(World p_i1582_1_, int maxAge) {
|
|
super(p_i1582_1_, maxAge);
|
|
}
|
|
|
|
}
|