mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-30 07:47:11 +00:00
8 lines
154 B
C++
8 lines
154 B
C++
#pragma once
|
|
|
|
class Redstone {
|
|
public:
|
|
static const int SIGNAL_NONE = 0;
|
|
static const int SIGNAL_MIN = 0;
|
|
static const int SIGNAL_MAX = 15;
|
|
}; |