예제 #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>();
 }
예제 #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();
 }
예제 #3
0
파일: Arrow.cs 프로젝트: Reaxt/RhythmThing
 public Arrow(Chart.collumn col, Chart.NoteInfo note, Chart chart)
 {
     collumn    = col;
     noteInfo   = note;
     this.chart = chart;
 }