Added many comments, and changed function names for wrapper functions.

This commit is contained in:
rude
2009-08-09 21:08:55 +02:00
parent f2adfd53f2
commit ba1a75e547
103 changed files with 2608 additions and 2391 deletions
+10 -8
View File
@@ -21,14 +21,16 @@
#ifndef LOVE_VERSION_H
#define LOVE_VERSION_H
// STD
#include <string>
namespace love
{
// Version stuff.
const char VERSION_MAJOR = 0;
const char VERSION_MINOR = 6;
const char VERSION_REV = 0;
const int VERSION_COMPATIBILITY[] = { 0 };
const char * VERSION_STR = "0.6.0";
const char * VERSION_CODENAME = "Jiggly Juice";
// Version stuff.
const int LOVE_VERSION = 060;
const int LOVE_VERSION_COMPATIBILITY[] = { 0 };
const std::string LOVE_VERSION_STR = "0.6.0";
const std::string LOVE_VERSION_CODENAME = "Jiggly Juice";
const std::string LOVE_VERSION_FULL_STR = std::string("LOVE ") + LOVE_VERSION_STR + std::string(" (") + LOVE_VERSION_CODENAME + std::string(")");
} // love
#endif // LOVE_VERSION_H