mirror of
https://github.com/love2d/love.git
synced 2026-08-19 04:06:17 +02:00
Added many comments, and changed function names for wrapper functions.
This commit is contained in:
+10
-8
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user