blob: ac9ae2b83f5b200a329fa1e4bbfda8894d910aa1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*===========================================================================
File:: version.cpp
Copyright (c) Radical Entertainment, Inc. All rights reserved.
===========================================================================*/
#include <stdio.h>
#include "version.hpp"
char* version = "1.0.1";
/* History */
char* versioninfo[] = {
"1.0.1 Perserve tMultiControllers, just remove texture animation.",
"1.0.0 Initial version.",
NULL
};
|