a75279c96c
* New Apps - Lot 1 Trying to mix it up a little with some fun, useful and just weird. Adds more new apps... Brainfuck Breakout Magic 8 Ball Todo List Also re-organised the app name part of main.yml * Fix build? * fixes * and some more * Update Brainfuck.cpp * i heard you like fixes with your fixes * no hard coded paths
12 lines
152 B
C++
12 lines
152 B
C++
#include "Brainfuck.h"
|
|
#include <TactilityCpp/App.h>
|
|
|
|
extern "C" {
|
|
|
|
int main(int argc, char* argv[]) {
|
|
registerApp<Brainfuck>();
|
|
return 0;
|
|
}
|
|
|
|
}
|