summaryrefslogtreecommitdiffstats
path: root/Tools/AnvilStats/Utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/AnvilStats/Utils.h')
-rw-r--r--Tools/AnvilStats/Utils.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/Tools/AnvilStats/Utils.h b/Tools/AnvilStats/Utils.h
new file mode 100644
index 000000000..095abc99e
--- /dev/null
+++ b/Tools/AnvilStats/Utils.h
@@ -0,0 +1,61 @@
+
+// Utils.h
+
+// Interfaces to utility functions
+
+
+
+
+
+#pragma once
+
+
+
+
+
+enum eEntityType
+{
+ entBat,
+ entBlaze,
+ entCaveSpider,
+ entChicken,
+ entCow,
+ entCreeper,
+ entEnderDragon,
+ entEnderman,
+ entGhast,
+ entGiant,
+ entLavaSlime,
+ entMushroomCow,
+ entOzelot,
+ entPig,
+ entPigZombie,
+ entSheep,
+ entSilverfish,
+ entSkeleton,
+ entSlime,
+ entSnowMan,
+ entSpider,
+ entSquid,
+ entVillager,
+ entVillagerGolem,
+ entWitch,
+ entWitherBoss,
+ entWolf,
+ entZombie,
+ entUnknown,
+ entMax = entUnknown,
+} ;
+
+
+
+
+
+extern const char * GetBiomeString(unsigned char a_Biome);
+extern const char * GetBlockTypeString(unsigned char a_BlockType);
+extern eEntityType GetEntityType(const AString & a_EntityTypeString);
+extern const char * GetEntityTypeString(eEntityType a_EntityType);
+extern int GetNumCores(void);
+
+
+