25 lines
459 B
C#
25 lines
459 B
C#
namespace MU3.DataStudio;
|
|
|
|
class patch_MusicData: MusicData {
|
|
public new int CostToUnlock {
|
|
get {
|
|
return 0;
|
|
}
|
|
private set { /* nop */ }
|
|
}
|
|
|
|
public new bool PossessingFromTheBeginning {
|
|
get {
|
|
return true;
|
|
}
|
|
private set { /* nop */ }
|
|
}
|
|
|
|
public new bool IsLockedAtTheBeginning {
|
|
get {
|
|
return false;
|
|
}
|
|
private set { /* nop */ }
|
|
}
|
|
}
|