Compare commits

..

1 Commits

Author SHA1 Message Date
749b1653a8 examples 2019-04-26 13:59:20 +02:00
2 changed files with 24 additions and 0 deletions

12
application.cpp-example Normal file
View File

@@ -0,0 +1,12 @@
#include "defines.h"
#include "configuration.h"
void setupApplication() {
}
void loopApplication() {
}

12
application.h-example Normal file
View File

@@ -0,0 +1,12 @@
#ifndef APPLICATION_H_
#define APPLICATION_H_
void setupApplication();
void loopApplication();
#endif /* APPLICATION_H_ */