the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 20 lines 354 B view raw
1#pragma once 2 3static const int LEVEL_MAX_BRIGHTNESS = 15; 4class GameRenderer_updateLightTexture_dataIn 5{ 6public: 7 class LevelData 8 { 9 public: 10 bool m_valid; 11 float m_skyDarken; 12 float m_brightnessRamp[LEVEL_MAX_BRIGHTNESS + 1]; 13 int m_lightningBoltTime; 14 int m_dimensionID; 15 int* m_lightPixelsOutput; 16 }; 17 18 LevelData m_levelData[3]; 19 float blr; 20};