spicetools/games/rb/io.h

41 lines
714 B
C
Raw Normal View History

2024-08-28 15:10:34 +00:00
#pragma once
#include <vector>
#include "cfg/api.h"
namespace games::rb {
// all buttons in correct order
namespace Buttons {
enum {
Service,
Test
};
}
// all lights in correct order
namespace Lights {
enum {
PoleR,
PoleG,
PoleB,
EscutcheonR,
EscutcheonG,
EscutcheonB,
WooferR,
WooferG,
WooferB,
TitleR,
TitleG,
TitleB,
TitleUpR,
TitleUpG,
TitleUpB
};
}
// getters
std::vector<Button> &get_buttons();
std::vector<Light> &get_lights();
}