make the resource files not be raylib specific
This commit is contained in:
27
src/application.rc
Normal file
27
src/application.rc
Normal file
@@ -0,0 +1,27 @@
|
||||
GLFW_ICON ICON "icon.ico"
|
||||
|
||||
1 VERSIONINFO
|
||||
FILEVERSION 1,0,0,0
|
||||
PRODUCTVERSION 1,0,0,0
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
//BLOCK "080904E4" // English UK
|
||||
BLOCK "040904E4" // English US
|
||||
BEGIN
|
||||
//VALUE "CompanyName", "raylib technologies"
|
||||
VALUE "FileDescription", "A cool game made with raylib (www.raylib.com)"
|
||||
VALUE "FileVersion", "1.0.0"
|
||||
VALUE "InternalName", "cool game"
|
||||
VALUE "LegalCopyright", "(c) 2025 YOUR NAME"
|
||||
//VALUE "OriginalFilename", "raylib_app"
|
||||
VALUE "ProductName", "A cool game"
|
||||
VALUE "ProductVersion", "1.0.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
//VALUE "Translation", 0x809, 1252 // English UK
|
||||
VALUE "Translation", 0x409, 1252 // English US
|
||||
END
|
||||
END
|
||||
Reference in New Issue
Block a user