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 |
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
/** | |
* Information for customers renting a musical instrument. | |
* | |
* @author Chad | |
* @version 1.0 | |
*/ | |
public class Customer | |
{ | |
private String firstName; | |
private String lastName; |
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
/** | |
* Class to model a Vehicle | |
* | |
* Assignment 1 | |
* | |
* @author Chad | |
* @version 1.0 | |
*/ | |
public class Vehicle | |
{ |
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
/** | |
* Class to model a Person | |
* | |
* Lab 4 | |
* | |
* @author Chad | |
* @version 1.3 | |
*/ | |
public class Person | |
{ |
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
/** | |
* Class to model a Person | |
* | |
* Lab 3 | |
* | |
* @author Chad | |
* @version 1.2 | |
*/ | |
public class Person | |
{ |
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
/** | |
* Class that models a Person. | |
* | |
* @author Chad | |
* @version 1.1 | |
*/ | |
public class Person | |
{ | |
private int age; | |
private double height; // cm |
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
/** | |
* Class that models a Person. | |
* | |
* @author Chad | |
* @version 1.0 | |
*/ | |
public class Person | |
{ | |
String firstName; | |
String lastName; |
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
#Discord Bot by GrunclePug#7015 | |
#Libraries | |
import discord | |
from discord.ext import commands | |
import asyncio | |
import platform | |
#Bot setup | |
version = "Gruncle Word Filteration v0.1" |
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
//Discord Bot By: @GrunclePug#7015 |
NewerOlder