-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
856 additions
and
370 deletions.
There are no files selected for viewing
This file contains 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 file contains 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 file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package example; | ||
|
||
import static example.Emoji.emojiCryofluid; | ||
import static example.Emoji.emojiOil; | ||
import static example.Emoji.emojiSlag; | ||
import static example.Emoji.emojiWater; | ||
|
||
public class Emoji { | ||
|
||
public static final char emojiCopper = '\uf838'; | ||
public static final char emojiLead = '\uf837'; | ||
public static final char emojiMetaglass = '\uf836'; | ||
public static final char emojiGraphite = '\uf835'; | ||
public static final char emojiSand = '\uf834'; | ||
public static final char emojiCoal = '\uf833'; | ||
public static final char emojiTitanium = '\uf832'; | ||
public static final char emojiThorium = '\uf831'; | ||
public static final char emojiScrap = '\uf830'; | ||
public static final char emojiSilicon = '\uf82f'; | ||
public static final char emojiPlastanium = '\uf82e'; | ||
public static final char emojiPhaseFabric = '\uf82d'; | ||
public static final char emojiSurgeAlloy = '\uf82c'; | ||
public static final char emojiSporePod = '\uf82b'; | ||
public static final char emojiBlastCompound = '\uf82a'; | ||
public static final char emojiPyratite = '\uf829'; | ||
|
||
public static final char emojiWater = '\uf828'; | ||
public static final char emojiSlag = '\uf827'; | ||
public static final char emojiOil = '\uf826'; | ||
public static final char emojiCryofluid = '\uf825'; | ||
|
||
public static final char emojiAlert = '\u26a0'; | ||
|
||
public static final char[] oreBlocksEmoji = new char[] { | ||
emojiCopper, | ||
emojiLead, | ||
emojiScrap, | ||
emojiSand, | ||
emojiCoal, | ||
emojiTitanium, | ||
emojiThorium | ||
}; | ||
|
||
public static final char[] liquidsEmoji = new char[] { | ||
emojiWater, | ||
emojiOil, | ||
emojiSlag, | ||
emojiCryofluid | ||
}; | ||
} |
Oops, something went wrong.