-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
63 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
class Randomizer { | ||
public: | ||
void Randomize(); | ||
short Randomize(int seed); | ||
void AdjustSpeed(); | ||
|
||
private: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#pragma once | ||
|
||
#define TO_STRING2(s) L#s | ||
#define TO_STRING(s) TO_STRING2(s) | ||
|
||
#define MAJOR 3 | ||
#define MINOR 0 | ||
#define PATCH 1 | ||
|
||
#define VERSION MAJOR, MINOR, PATCH | ||
#define PATCH 3 | ||
|
||
#define TO_STRING2(s) L#s | ||
#define TO_STRING(s) TO_STRING2(s) | ||
#define VERSION_STR TO_STRING(MAJOR) L"." TO_STRING(MINOR) L"." TO_STRING(PATCH) | ||
#define VERSION MAJOR, MINOR, PATCH | ||
|
||
#define PRODUCT_NAME L"Witness Randomizer" | ||
#define WINDOW_CLASS L"WitnessRandomizer" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,6 @@ | ||
#include "version.h" | ||
#include "resource.h" | ||
#include <SDKDDKVer.h> | ||
#include "windows.h" | ||
|
||
STRINGTABLE | ||
BEGIN | ||
IDC_SOURCE "SOURCE" | ||
END | ||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION VERSION | ||
PRODUCTVERSION VERSION | ||
FILEVERSION VERSION | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904b0" | ||
BEGIN | ||
VALUE "FileDescription", "Randomizer for The Witness" | ||
VALUE "FileVersion", VERSION_STR | ||
VALUE "InternalName", "Source.exe" | ||
VALUE "LegalCopyright", "Copyright (C) 2018" | ||
VALUE "OriginalFilename", "Source.exe" | ||
VALUE "ProductName", PRODUCT_NAME | ||
VALUE "ProductVersion", VERSION_STR | ||
END | ||
END | ||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters