You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
343 B
C++

#pragma once
#include "core/inputtype.h"
#include <vector>
class ClassicArrowNote;
class HoldManager // Not important now
{
public:
explicit HoldManager() = default;
void emplace(ClassicArrowNote* note);
void checkRelease(sf::Keyboard::Key released_key);
private:
std::vector<ClassicArrowNote*> _notes_on_hold;
};