Beispiel #1
0
 public Receiver(Chart.collumn col, List <Chart.NoteInfo> noteInfos, Chart chart)
 {
     this.chart   = chart;
     collumn      = col;
     notes        = new List <Chart.NoteInfo>(noteInfos);
     spawnedNotes = new List <Chart.NoteInfo>();
     deadNotes    = new List <Arrow>();
     arrows       = new List <Arrow>();
 }
Beispiel #2
0
 public Receiver(Chart.collumn col, List <Chart.NoteInfo> noteInfos, Chart chart)
 {
     this.chart   = chart;
     collumn      = col;
     notes        = new List <Chart.NoteInfo>(noteInfos);
     spawnedNotes = new List <Chart.NoteInfo>();
     deadNotes    = new List <Arrow>();
     arrows       = new List <Arrow>();
     //dictionary representing mods
     this.mods = ModEffects.getNewModsDictionary();
 }
Beispiel #3
0
 public Arrow(Chart.collumn col, Chart.NoteInfo note, Chart chart)
 {
     collumn    = col;
     noteInfo   = note;
     this.chart = chart;
 }