ArtemisComm.ShipAction2SubPackets.EngSetCoolantSubPacket.GetPacket C# (CSharp) Method

GetPacket() public static method

public static GetPacket ( ShipSystem system, int value ) : Packet
system ShipSystem
value int
return Packet
        public static Packet GetPacket(ShipSystem system, int value)
        {
            EngSetCoolantSubPacket escsp = new EngSetCoolantSubPacket(system, value);
            ShipAction2Packet sap2 = new ShipAction2Packet(escsp);
            return new Packet(sap2);
        }
        public EngSetCoolantSubPacket(ShipSystem system, int value)