Floppy item
parent
f2ebd52fb7
commit
555bc2ed22
@ -0,0 +1,22 @@
|
||||
package net.brokenmoon.redcontrol.item;
|
||||
|
||||
import com.simon816.j65el02.device.DiskDriver;
|
||||
import net.minecraft.item.Item;
|
||||
|
||||
public class FloppyDisk extends Item {
|
||||
|
||||
public String uri;
|
||||
public String name;
|
||||
public String serial;
|
||||
|
||||
public FloppyDisk(Settings settings) {
|
||||
super(settings);
|
||||
}
|
||||
|
||||
public FloppyDisk(Settings settings, String uri, String name, String serial){
|
||||
this(settings);
|
||||
this.uri = uri;
|
||||
this.name = name;
|
||||
this.serial = serial;
|
||||
}
|
||||
}
|
Binary file not shown.
Loading…
Reference in New Issue