コード例 #1
0
ファイル: DSP.cs プロジェクト: nowcoder001/dragonnest_src
        public RESULT addInput(DSP target, out DSPConnection connection, DSPCONNECTION_TYPE type)
        {
            connection = null;
            IntPtr raw;
            RESULT result = DSP.FMOD5_DSP_AddInput(this.rawPtr, target.getRaw(), out raw, type);

            connection = new DSPConnection(raw);
            return(result);
        }