Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JujuAdams committed Jan 24, 2024
1 parent 4682260 commit c6cf43d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion options/windows/options_windows.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion scripts/__PrngSystem/__PrngSystem.gml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
// Feather disable all

#macro __PRNG_VERSION "1.2.0"
#macro __PRNG_DATE "2024-01-24"

function __PrngSystem()
{
static _default = undefined;
if (_default != undefined) return _default;
_default = new PrngGenerator();

show_debug_message("Welcome to PRNG by Juju Adams!");
show_debug_message("Welcome to PRNG by Juju Adams! This is version " + __PRNG_VERSION + " " + __PRNG_DATE);

return _default;
}

0 comments on commit c6cf43d

Please sign in to comment.