first commit

This commit is contained in:
murdle
2026-03-01 02:38:58 +02:00
commit 19250b9db4
19111 changed files with 4358159 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#pragma once
static const int LEVEL_MAX_BRIGHTNESS = 15;
class GameRenderer_updateLightTexture_dataIn
{
public:
class LevelData
{
public:
bool m_valid;
float m_skyDarken;
float m_brightnessRamp[LEVEL_MAX_BRIGHTNESS + 1];
int m_lightningBoltTime;
int m_dimensionID;
int* m_lightPixelsOutput;
};
LevelData m_levelData[3];
float blr;
};