mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
23 lines
842 B
C
23 lines
842 B
C
#ifndef ROBLOX_STUDIO_VERSION_H
|
|
#define ROBLOX_STUDIO_VERSION_H
|
|
|
|
#define STRINGIFY(x) #x
|
|
#define TOSTRING(x) STRINGIFY(x)
|
|
|
|
#define VER_FILEVERSION 0,75,0,691
|
|
#define VER_FILEVERSION_STR TOSTRING(VER_FILEVERSION)
|
|
|
|
#define VER_PRODUCTVERSION 0,75,0,0
|
|
#define VER_PRODUCTVERSION_STR TOSTRING(VER_PRODUCTVERSION)
|
|
|
|
#define VER_COMPANYNAME_STR "Roblox Corporation"
|
|
#define VER_FILEDESCRIPTION_STR "RobloxStudio"
|
|
#define VER_INTERNALNAME_STR "Roblox Studio Qt"
|
|
#define VER_LEGALCOPYRIGHT_STR "Copyright © 2012 Roblox Corporation"
|
|
#define VER_LEGALTRADEMARKS1_STR "All Rights Reserved"
|
|
#define VER_LEGALTRADEMARKS2_STR VER_LEGALTRADEMARKS1_STR
|
|
#define VER_ORIGINALFILENAME_STR "RobloxStudio.exe"
|
|
#define VER_PRODUCTNAME_STR "Roblox Studio"
|
|
|
|
#endif // ROBLOX_STUDIO_VERSION_H
|