Skip to content

Commit

Permalink
minor haxe4 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ncannasse committed Jun 13, 2018
1 parent 6db049e commit 8b59a47
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions steam/Networking.hx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package steam;

typedef NetworkApi = {
private function onConnectionRequest( u : User ) : Bool;
private function onConnectionError( u : User, error : NetworkStatus ) : Void;
private function onData( u : User, data : haxe.io.Bytes ) : Void;
function onConnectionRequest( u : User ) : Bool;
function onConnectionError( u : User, error : NetworkStatus ) : Void;
function onData( u : User, data : haxe.io.Bytes ) : Void;
}

@:enum abstract NetworkStatus(Int) {
Expand Down

0 comments on commit 8b59a47

Please sign in to comment.