Skip to content

Instantly share code, notes, and snippets.

@daCyuubi
Last active June 17, 2018 05:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daCyuubi/af024aab0bf8f92ad6ad322d350c1631 to your computer and use it in GitHub Desktop.
Save daCyuubi/af024aab0bf8f92ad6ad322d350c1631 to your computer and use it in GitHub Desktop.
string Line;
StreamReader BeatmapFile = new StreamReader("BeatmapData.csv");
while ((Line = BeatmapFile.ReadLine()) != null)
{
string[] LineData = Line.Split(',');
Console.WriteLine("hitcircle_DrawHitCircleAndApproach(Resize(" + LineData[0] + "), Resize(" + LineData[1] + "), 1, " + LineData[2] + ", currentTime, 10);");
}
BeatmapFile.Close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment