23 lines
593 B
C
23 lines
593 B
C
#include <stdio.h>
|
|
#include "gamefile.h" //if possible, this header file will dictate what is going to happen
|
|
#include "gtk.h" //Possible GTK implementation
|
|
#include "gui.h" //Other GUI implementations like Qt
|
|
/*
|
|
Copyright (C) 2024 tihgs
|
|
License: GNU GPL-2.0-or-later
|
|
This is free software: you are free to change and redistribute it
|
|
|
|
Contact me at:
|
|
Email - tihgs@mail.i2p
|
|
*/
|
|
int main(){
|
|
printf("Starting the program...\n");
|
|
//Next line here is just pseudocode
|
|
if (return == 0){
|
|
printf("Success");
|
|
}
|
|
else{
|
|
printf("Failed");
|
|
}
|
|
return 0;
|
|
} |