the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 14 lines 223 B view raw
1#pragma once 2#include "Feature.h" 3#include "Material.h" 4 5class LakeFeature : public Feature 6{ 7private: 8 int tile; 9 10public: 11 LakeFeature (int tile); 12 13 virtual bool place(Level *level, Random *random, int x, int y, int z); 14};