We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db9cf88 commit d5d5407Copy full SHA for d5d5407
src/main.cpp
@@ -7,6 +7,10 @@
7
extern "C" const char eadk_app_name[] = "Voord";
8
extern "C" const uint32_t eadk_app_api_level = 0;
9
extern "C" void _eadk_main();
10
+/* If the app were to require an external data, the symbol 'eadk_external_data'
11
+ * could be used without any definition in the .nwa. The .bin would require an
12
+ * external .o defining eadk_external_data in order to bin the executable. */
13
+// extern "C" const unsigned char eadk_external_data[];
14
15
void checkForSpaceshipAlienCollisions(Alien aliens[], int numberOfAliens, Spaceship * spaceship) {
16
for (int i = 0; i < numberOfAliens; i++) {
0 commit comments