mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-11 20:11:18 +03:00
13 lines
122 B
C++
13 lines
122 B
C++
#pragma once
|
|
|
|
class LightLayer
|
|
{
|
|
public:
|
|
LightLayer(int x);
|
|
public:
|
|
static LightLayer Sky, Block;
|
|
public:
|
|
int m_x;
|
|
};
|
|
|