22 lines
472 B
C++
22 lines
472 B
C++
/*===========================================================================
|
|
|
|
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
|
|
};
|
|
|