mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-23 03:49:26 +01:00
16 lines
263 B
C
16 lines
263 B
C
|
/*
|
||
|
* Version.h - Version information
|
||
|
*
|
||
|
* Frodo (C) 1994-1997,2002 Christian Bauer
|
||
|
*/
|
||
|
|
||
|
#ifndef _VERSION_H
|
||
|
#define _VERSION_H
|
||
|
|
||
|
// Version/revision
|
||
|
const int FRODO_VERSION = 4;
|
||
|
const int FRODO_REVISION = 1;
|
||
|
const char VERSION_STRING[] = "Frodo V4.1b";
|
||
|
|
||
|
#endif
|