Construct a new member proxy.
Used to construct a proxy between instance member function (class bound function) and event
class TinyClass {
uint32_t counter;
public:
TinyClass() {
}
~TinyClass() {
}
void Test() {
this->counter++;
}
}
int main() {
TinyClass tiny();
while(1);
}
static SRL::Types::Event OnVblank
Event triggered every v-blank.
Definition srl_core.hpp:35
static void Initialize(const Types::HighColor &backColor)
Initialize basic environment.
Definition srl_core.hpp:53
static const constexpr Types::HighColor Black
Black color.
Definition srl_color.hpp:193
This proxy is used to interface with member functions.
Definition srl_event.hpp:15