Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix haxelib package #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions haxelib.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
"license": "Apache",
"tags": ["cross","haxe","random","game"],
"description": "Pseudorandom number generator",
"contributors": ["flashultra"],
"contributors": ["flashultra", "NQNStudios"],
"classPath": "src/",
"releasenote": "Initial version",
"version": "0.0.1",
"url": "https://github.com/flashultra/hxprng",
"dependencies": {

}
"main": "sample.Main"
}
2 changes: 2 additions & 0 deletions src/PCG32.hx → src/hxprng/PCG32.hx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
* http://www.pcg-random.org
*/

package hxprng;

import haxe.Timer;
import haxe.Int32;
import haxe.Int64;
Expand Down
4 changes: 4 additions & 0 deletions sample/Main.hx → src/sample/Main.hx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
package sample;

import hxprng.PCG32;

class Main {

static function main() {
Expand Down