-
Notifications
You must be signed in to change notification settings - Fork 3
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
2 changed files
with
20 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package scfunkin.backend.gamejolt; | ||
|
||
/** | ||
* YOU MUST NOT SHARE THESE DATA WITH ANYONE!! | ||
* | ||
* | ||
* The publication of these data would lead to hacking or other kinds of alterations in the game | ||
* To solve this problem, you must add the following line to the `.gitignore` file in your game director (if you don't have one, so create one ofc) | ||
* ```gitignore | ||
* source/gamejolt/GJKeys.hx | ||
* ``` | ||
*/ | ||
class GJKeys | ||
{ | ||
/** Your Game ID from GameJolt **/ | ||
public static var id:Int = -1; | ||
|
||
/** Your Game Private Key from GameJolt, If key is updated with this file, it will be changed to still be private. **/ | ||
public static var key:String = ''; | ||
} |