cpp_launchpad/compile/controller/root.h
2021-12-22 01:47:19 -08:00

12 lines
213 B
C++

#ifndef CONTROLLER_ROOT
#define CONTROLLER_ROOT
#include "controller/status.h"
#include "controller/event.h"
class root_controller_t {
public:
controller_status_t on_event(controller_event_t event);
};
#endif