diff options
Diffstat (limited to 'src/citra/citra.h')
| -rw-r--r-- | src/citra/citra.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/citra/citra.h b/src/citra/citra.h new file mode 100644 index 000000000..b3a07c005 --- /dev/null +++ b/src/citra/citra.h | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | /** | ||
| 2 | * Copyright (C) 2013 Citra Emulator | ||
| 3 | * | ||
| 4 | * @file citra.h | ||
| 5 | * @author ShizZy <shizzy247@gmail.com> | ||
| 6 | * @date 2013-09-04 | ||
| 7 | * @brief Main entry point | ||
| 8 | * | ||
| 9 | * @section LICENSE | ||
| 10 | * This program is free software; you can redistribute it and/or | ||
| 11 | * modify it under the terms of the GNU General Public License as | ||
| 12 | * published by the Free Software Foundation; either version 2 of | ||
| 13 | * the License, or (at your option) any later version. | ||
| 14 | * | ||
| 15 | * This program is distributed in the hope that it will be useful, but | ||
| 16 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 18 | * General Public License for more details at | ||
| 19 | * http://www.gnu.org/copyleft/gpl.html | ||
| 20 | * | ||
| 21 | * Official project repository can be found at: | ||
| 22 | * http://code.google.com/p/gekko-gc-emu/ | ||
| 23 | */ | ||
| 24 | |||
| 25 | #ifndef CITRA_CITRA_H | ||
| 26 | #define CITRA_CITRA_H | ||
| 27 | |||
| 28 | #include "version.h" | ||
| 29 | |||
| 30 | #define APP_NAME "citra" | ||
| 31 | #define APP_VERSION "0.01-" VERSION | ||
| 32 | #define APP_TITLE APP_NAME " " APP_VERSION | ||
| 33 | #define COPYRIGHT "Copyright (C) 2013 Citra Emulator" | ||
| 34 | |||
| 35 | #endif // CITRA_CITRA_H | ||