using T3.Core.DataTypes; using System.Collections.Generic; using T3.Core.Operator; using T3.Core.Operator.Attributes; using T3.Core.Operator.Slots; using System.Runtime.InteropServices; namespace Examples.user.fuzzy.midi{ [Guid("c4d3e590-1780-4419-b946-7b3fc7d718aa")] internal sealed class LaunchPadXFader8 : Instance { [Output(Guid = "9ef54700-8366-45a5-b148-d070b9fc2bbe")] public readonly Slot OutputCmd = new Slot(); [Output(Guid = "61786e6d-406f-41d1-aa26-da56c56708ae")] public readonly Slot IntOut = new Slot(); [Output(Guid = "89983c00-7219-456c-8bbd-f1a31bd47dfa")] public readonly Slot FloatOut = new Slot(); [Input(Guid = "7e8a8f28-a114-439b-b4f6-b8a4a7be2d3f")] public readonly InputSlot MidiDevice = new InputSlot(); [Input(Guid = "2754a005-4763-4b74-8580-2eb684117e8c")] public readonly InputSlot X = new InputSlot(); [Input(Guid = "427c03d6-b3b0-4318-99e4-139e12484e8e")] public readonly InputSlot Y = new InputSlot(); [Input(Guid = "d4403c6f-cc7c-446b-917d-b7d1e635fa7a")] public readonly InputSlot Color = new InputSlot(); [Input(Guid = "9a614d16-24b0-4a8d-8af0-84456b627ec8")] public readonly InputSlot Init = new InputSlot(); } }