invertika_game.Game.MapComposite.getID C# (CSharp) Method

getID() public method

public getID ( ) : int
return int
        public int getID()
        {
            return mID;
        }

Usage Example

Example #1
0
 void updateMapVar(MapComposite map, string name, string value)
 {
     MessageOut msg=new MessageOut(Protocol.GAMSG_SET_VAR_MAP);
     msg.writeInt32(map.getID());
     msg.writeString(name);
     msg.writeString(value);
     send(msg);
 }