Skip to content

Commit

Permalink
Merge pull request #8 from coryleach/dev
Browse files Browse the repository at this point in the history
Fixed missing method in IRandomNumberGenerator
  • Loading branch information
coryleach authored Mar 7, 2023
2 parents 6b3cde7 + 2c37c89 commit ba14ca7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ Library of utilitities for procedural generation
#### Using UnityPackageManager (for Unity 2019.3 or later)
Open the package manager window (menu: Window > Package Manager)<br/>
Select "Add package from git URL...", fill in the pop-up with the following link:<br/>
https://github.com/coryleach/UnityProcgen.git#0.0.8<br/>
https://github.com/coryleach/UnityProcgen.git#0.0.9<br/>

#### Using UnityPackageManager (for Unity 2019.1 or later)

Find the manifest.json file in the Packages folder of your project and edit it to look like this:
```js
{
"dependencies": {
"com.gameframe.procgen": "https://github.com/coryleach/UnityProcgen.git#0.0.8",
"com.gameframe.procgen": "https://github.com/coryleach/UnityProcgen.git#0.0.9",
...
},
}
Expand Down
1 change: 1 addition & 0 deletions Runtime/Utility/IRandomNumberGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public interface IRandomNumberGenerator
ushort NextUshort();
byte NextByte();
int NextInt();
int NextIntRange(int min, int max);
short NextShort();
float NextFloatZeroToOne();
float NextFloatNegOneToOne();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "com.gameframe.procgen",
"displayName": "Gameframe.Procgen",
"repositoryName": "UnityProcgen",
"version": "0.0.8",
"version": "0.0.9",
"description": "Library of utilitities for procedural generation",
"type": "library",
"keywords": [],
Expand Down

0 comments on commit ba14ca7

Please sign in to comment.