mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
18 lines
281 B
C++
18 lines
281 B
C++
#include <escher/view_controller.h>
|
|
|
|
ViewController::ViewController(Responder * parentResponder) :
|
|
Responder(parentResponder)
|
|
{
|
|
}
|
|
|
|
const char * ViewController::title() {
|
|
return nullptr;
|
|
}
|
|
|
|
void ViewController::viewWillAppear() {
|
|
}
|
|
|
|
void ViewController::viewDidDisappear() {
|
|
}
|
|
|