the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 14 lines 286 B view raw
1#pragma once 2 3// 4J Stu Richard has added the class like this to the stubs, although the original Java code 4// had an enum with a "surrounding" data member, which is set to the value we are setting the enum to 5 6class LightLayer 7{ 8public: 9 enum variety 10 { 11 Sky = 15, 12 Block = 0, 13 }; 14};