mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2024-11-15 03:27:41 +01:00
28 lines
431 B
C++
28 lines
431 B
C++
//
|
|
// Created by Syméon on 17/08/2017.
|
|
//
|
|
|
|
#ifndef FEIS_FUMEN_H
|
|
#define FEIS_FUMEN_H
|
|
|
|
#include <iostream>
|
|
#include <map>
|
|
|
|
#include "Note.h"
|
|
|
|
|
|
class Fumen {
|
|
public:
|
|
Fumen();
|
|
void loadFromMemon(std::string path) {};
|
|
void loadFromMemo(std::string path) {};
|
|
void loadFromEve(std::string path) {};
|
|
void setNote(int timing,int note,int length,int trail_pos) {};
|
|
|
|
private:
|
|
std::multimap<int,Note> Notes;
|
|
};
|
|
|
|
|
|
#endif //FEIS_FUMEN_H
|