14 lines
288 B
C
14 lines
288 B
C
|
#ifndef VERSION_H
|
||
|
#define VERSION_H
|
||
|
|
||
|
#include "BasicTypes.h"
|
||
|
|
||
|
static const char* kCopyright = "Copyright (C) 2002 Chris Schoeneman";
|
||
|
|
||
|
// build version
|
||
|
static const SInt16 kMajorVersion = 0;
|
||
|
static const SInt16 kMinorVersion = 5;
|
||
|
static const SInt16 kReleaseVersion = 0;
|
||
|
|
||
|
#endif
|