create /apps/temapltes/ structure, clean up cmake files to use directory name for binary name directly

This commit is contained in:
veclavtalica
2025-02-01 13:47:17 +03:00
parent 24e8dc052d
commit aeabb17f86
9 changed files with 102 additions and 6 deletions

12
apps/templates/c/state.h Normal file
View File

@ -0,0 +1,12 @@
#ifndef STATE_H
#define STATE_H
#include "twn_game_api.h"
/* populate it with state information */
struct state {
uint64_t counter;
};
#endif