ISFSArray.GetClass Method |
Namespace: Sfs2X.Entities.Data
Object GetClass( int index )
IMPORTANT: class serialization is not supported in Unity WebGL.
The server-side Java definition of a SpaceShip class is:
package my.game.spacecombat public class SpaceShip implements SerializableSFSType { private String type; private String name; private int firePower; private int maxSpeed; private List<String> weapons; public SpaceShip(String name, String type) { this.name = name; this.type = type; } // ... Getters / Setters ... }
The client-side C# definition of the SpaceShip class is:
namespace my.game.spacecombat { public class SpaceShip : SerializableSFSType { private string _type; private string _name; private int _firePower; private int _maxSpeed; private Array _weapons; public SpaceShip(string name, string type) { _name = name _type = type } // ... Getters / Setters ... } }
A SpaceShip instance is sent by the server to the client in the first position of an array. This is how to retrieve it:
SpaceShip myShipData = (SpaceShip)sfsArray.GetClass(0);