Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 820 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 820 Bytes

beatmap_parser

Parses .osu files.

Add to your repo

In your repo root folder

  • git submodule add https://github.com/lakazatong/beatmap_parser libs/beatmap_parser

Include

In your repo

  • #include "libs/beatmap_parser/parser.h"

In the libs folder

  • #include "../beatmap_parser/parser.h"

Run isolated test

Uncomment test.c and write your tests, then run:

make && test.exe

You would need a way to run make on Windows. Remove the .exe extension in the Makefile for Linux.

Update your submodules

  • git submodule update --remote --merge

Remove a submodule

  • git submodule deinit -f path/to/submodule
  • rm -rf .git/modules/path/to/submodule
  • git rm -f path/to/submodule

Taken from here.