rgc-chart 0.0.1

A Rust library for parsing and converting rhythm game charts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(warnings)] // REMOVE LATER WHEN FINALLY ADDING SUPPORT

use super::chart_classes;
use super::errors;

pub(crate) fn parse_dwi(raw_chart: &str) -> Result<chart_classes::Chart, Box<dyn std::error::Error>>  {
    unimplemented!();
}

pub(crate) fn parse_ksf(raw_chart: &str) -> Result<chart_classes::Chart, Box<dyn std::error::Error>>  {
    unimplemented!();
}