diff options
-rw-r--r-- | version.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/version.h b/version.h new file mode 100644 index 0000000..bf3ff9d --- /dev/null +++ b/version.h @@ -0,0 +1,12 @@ +#ifndef VERSION_H
+#define VERSION_H
+
+namespace Version
+{
+ static const int MAJOR = 0;
+ static const int MINOR = 4;
+ static const int REVISION = 0;
+ static const int BUILD = 0;
+}
+
+#endif // VERSION_H
|