When I try to cast an object of NetworkObject class (a class I have created )that has arrived at a server from a client I get an error -
java.lang.ClassNotFoundException... client.NetworkObject
I have the class in a Server package, but why does it specify that client.NetworkObject is not found, and how can I solve this?
I cut and pasted the NetworkObject from the client package to the server package
Communication is client to server.
Is this to do with the packages i have (client and server)
Thanks