Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temp #189

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Temp #189

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile.linux
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ICODIR := ico
SRC := $(wildcard $(SRCDIR)/*.cpp)
OBJ := $(patsubst $(SRCDIR)/%.cpp, $(OBJDIR)/%.o, $(SRC))
CXXFLAGS := -std=c++17 -O2
LDFLAGS := -lxdo -lsfml-graphics -lsfml-window -lsfml-system -lSDL2 -lX11 -lXrandr -W
LDFLAGS := -lxdo -lsfml-graphics -lsfml-window -lsfml-system -lSDL2 -lX11 -lXrandr
INCFLAGS := -Iinclude

.PHONY: test create clean
Expand Down
8 changes: 5 additions & 3 deletions include/header.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,17 @@ void init();

bool is_pressed(int key_code);

std::tuple<double, double> bezier(double ratio, std::vector<double> &points, int length);
std::pair<double, double> bezier(double ratio, std::vector<double> &points, int length);

std::pair<double, double> get_xy();

void cleanup();
}; // namespace input

namespace osu {
bool init();

void draw();

void cleanup();
}; // namespace osu

namespace taiko {
Expand Down
Loading