mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-27 16:31:14 +00:00
22 lines
439 B
C++
22 lines
439 B
C++
/*!
|
|
* @file versions.h
|
|
* Version numbers for GOAL Language, Kernel, etc...
|
|
*/
|
|
|
|
#ifndef JAK1_VERSIONS_H
|
|
#define JAK1_VERSIONS_H
|
|
|
|
#include "common/common_types.h"
|
|
|
|
namespace versions {
|
|
// language version
|
|
constexpr s32 GOAL_VERSION_MAJOR = 2;
|
|
constexpr s32 GOAL_VERSION_MINOR = 6;
|
|
} // namespace versions
|
|
|
|
// GOAL kernel version
|
|
constexpr int KERNEL_VERSION_MAJOR = 2;
|
|
constexpr int KERNEL_VERSION_MINOR = 0;
|
|
|
|
#endif // JAK1_VERSIONS_H
|