forked from akanyan/mu3-mods
26 lines
493 B
C#
26 lines
493 B
C#
namespace MU3.DataStudio;
|
|
|
|
class patch_MusicData: MusicData {
|
|
public new int CostToUnlock {
|
|
get {
|
|
return 0;
|
|
}
|
|
private set { /* nop */ }
|
|
}
|
|
|
|
public new bool PossessingFromTheBeginning {
|
|
get {
|
|
// 1=Tutorial
|
|
return Name.id != 1;
|
|
}
|
|
private set { /* nop */ }
|
|
}
|
|
|
|
public new bool IsLockedAtTheBeginning {
|
|
get {
|
|
return false;
|
|
}
|
|
private set { /* nop */ }
|
|
}
|
|
}
|