Codebase list gigalomania / a1ee6300-6dce-4084-a2dc-9c389b875749/main main.cpp
a1ee6300-6dce-4084-a2dc-9c389b875749/main

Tree @a1ee6300-6dce-4084-a2dc-9c389b875749/main (Download .tar.gz)

main.cpp @a1ee6300-6dce-4084-a2dc-9c389b875749/mainraw · history · blame

#include "stdafx.h"

#if defined(__ANDROID__)
#include <android/log.h>
#endif

#include "game.h"

int main(int argc, char *argv[])
{
#if defined(__ANDROID__)
    __android_log_print(ANDROID_LOG_INFO, "Gigalomania", "started main");
#endif

	playGame(argc, argv);
#if defined(__ANDROID__)
    __android_log_print(ANDROID_LOG_INFO, "Gigalomania", "about to exit main");
#endif
    return 0;
}