When i implement the NotificationListener in my class it throws me this two errors:
Interface method onUserLeftLobby in namespace com.shephertz.appwarp.listener:NotificationListener is implemented with an incompatible signature in class AppWarpListener.
Interface method onUserJoinedLobby in namespace com.shephertz.appwarp.listener:NotificationListener is implemented with an incompatible signature in class AppWarpListener.
The thing is that my methods are exactly as in the ones in NotificationListener class so im lost here.
This is how i have those two methods:
public function onUserJoinedLobby (event:Lobby, user:String) : void {
}
public function onUserLeftLobby (event:Lobby, user:String) : void {
}
Any help would be greatly appreciated cause i have no idea how to solve this.