コード例 #1
0
 public Beatmap(string path, OsuFileParser.OsuFileSection sections) : this()
 {
     OsuFileParser parser = new OsuFileParser(path, this);
     parser.parse(sections);
 }
コード例 #2
0
ファイル: Beatmap.cs プロジェクト: AndreySeVeN/osuBMParser
 public Beatmap(string path, OsuFileParser.OsuFileSection sections) : this()
 {
     OsuFileParser parser = new OsuFileParser(path, this);
     parser.parse(sections);
 }
コード例 #3
0
 public Beatmap(string path) : this()
 {
     OsuFileParser parser = new OsuFileParser(path, this);
     parser.parse();
 }
コード例 #4
0
ファイル: Beatmap.cs プロジェクト: AndreySeVeN/osuBMParser
 public Beatmap(string path) : this()
 {
     OsuFileParser parser = new OsuFileParser(path, this);
     parser.parse();
 }