mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-22 10:31:45 +03:00
c3649df304
client. broke win32 stuff though. also moved version and copyright constants into a new file and renamed protocol version constants.
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
|