This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This Class collects Arguments from a command line and sends parameters to FileFunctions Class | |
* @author BCIT_summercamp_2019 | |
* @version Stage 4 | |
*/ | |
public class Driver | |
{ | |
//Constants (Flags) | |
public static final String PRINT_FLAG = "--print-all"; | |
public static final String SEARCH_FLAG = "--search"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.gruncle.eggcraft; | |
import java.util.Random; | |
import net.minecraft.block.Block; | |
import net.minecraft.block.material.Material; | |
import net.minecraft.item.Item; | |
/** | |
* Egg Ore Block |
OlderNewer