Etterna 0.74.4
Loading...
Searching...
No Matches
SoloCalc.h
1//
2// Created by Robert on 11/20/2019.
3// Edited by five 04/2020
4// n-keycount modification by poco0317
5
6#ifndef MINACALC_SOLOCALC_H
7#define MINACALC_SOLOCALC_H
8
9#include "Etterna/MinaCalc/MinaCalc.h"
10
11// This is a very basic difficulty calculator for solo files that I am putting
12// together as a proof of concept
13auto
14SoloCalc(const std::vector<NoteInfo>& NoteInfo,
15 unsigned columnCount,
16 float musicrate,
17 float goal) -> std::vector<float>;
18
19// Simple wrapper for allrates stolen from MinaCalc -five
20auto
21SoloCalc(const std::vector<NoteInfo>& notes, unsigned columnCount)
22 -> MinaSD;
23
24#endif // MINACALC_SOLOCALC_H
Definition NoteDataStructures.h:7