예제 #1
0
        public static bool AddInteropValue(Part part, string name, bool value, string owner)
        {
            ITestFlightInterop op = TestFlightInterface.GetInterop(part);

            if (op == null)
            {
                return(false);
            }

            return(op.AddInteropValue(name, value, owner));
        }