mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-21 04:38:33 -08:00
76 lines
1.8 KiB
C#
76 lines
1.8 KiB
C#
/*
|
|
* VsqMixerEntry.cs
|
|
* Copyright (c) 2008-2009 kbinani
|
|
*
|
|
* This file is part of Boare.Lib.Vsq.
|
|
*
|
|
* Boare.Lib.Vsq is free software; you can redistribute it and/or
|
|
* modify it under the terms of the BSD License.
|
|
*
|
|
* Boare.Lib.Vsq is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*/
|
|
#if JAVA
|
|
package org.kbinani.vsq;
|
|
|
|
import java.io.*;
|
|
#else
|
|
using System;
|
|
|
|
namespace Boare.Lib.Vsq {
|
|
#endif
|
|
|
|
/// <summary>
|
|
/// VsqMixerのSlave要素に格納される各エントリ
|
|
/// </summary>
|
|
#if JAVA
|
|
public class VsqMixerEntry implements Cloneable, Serializable {
|
|
#else
|
|
[Serializable]
|
|
public class VsqMixerEntry : ICloneable {
|
|
#endif
|
|
public int Feder;
|
|
public int Panpot;
|
|
public int Mute;
|
|
public int Solo;
|
|
|
|
public Object clone() {
|
|
VsqMixerEntry res = new VsqMixerEntry( Feder, Panpot, Mute, Solo );
|
|
return res;
|
|
}
|
|
|
|
#if !JAVA
|
|
public object Clone() {
|
|
return clone();
|
|
}
|
|
#endif
|
|
|
|
/// <summary>
|
|
/// 各パラメータを指定したコンストラクタ
|
|
/// </summary>
|
|
/// <param name="feder">Feder値</param>
|
|
/// <param name="panpot">Panpot値</param>
|
|
/// <param name="mute">Mute値</param>
|
|
/// <param name="solo">Solo値</param>
|
|
public VsqMixerEntry( int feder, int panpot, int mute, int solo ) {
|
|
this.Feder = feder;
|
|
this.Panpot = panpot;
|
|
this.Mute = mute;
|
|
this.Solo = solo;
|
|
}
|
|
|
|
#if JAVA
|
|
public VsqMixerEntry(){
|
|
this( 0, 0, 0, 0 );
|
|
#else
|
|
public VsqMixerEntry()
|
|
: this( 0, 0, 0, 0 ) {
|
|
#endif
|
|
}
|
|
}
|
|
|
|
#if !JAVA
|
|
}
|
|
#endif
|