mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
11 lines
222 B
C++
11 lines
222 B
C++
#include "stdafx.h"
|
|
#include "rpcs3_version.h"
|
|
#include "git-version.h"
|
|
|
|
namespace rpcs3
|
|
{
|
|
const utils::version version = utils::version{ 0, 0, 1 }
|
|
.type(utils::version_type::pre_alpha)
|
|
.postfix(RPCS3_GIT_VERSION);
|
|
}
|