コード例 #1
0
 NoteChart(SimFile simFile)
 {
     if (simFile == null)
     {
         // throw exception here
     }
     PapaSimFile = simFile;
     PapaSimFile.AddNoteChart(this);
 }
コード例 #2
0
 public Notechart(SimFile parent)
 {
     this.Parent = parent;
 }
コード例 #3
0
 internal NoteChart(SimFile owner, string id)
 {
   this.Owner = owner;
   this.Id = id;
   Owner.Add(id, this);
 }
コード例 #4
0
 // internal: code outside this assembly cannot instantiate this class
 internal NoteChart(SimFile parent, string id)
 {
     this.Parent = parent;
     this.Id     = id;
     Parent.dictionary.Add(id, this);
 }