Files
dilemmaker/source/toolbar.h
Raimon Zamora 8028d0533b - [NEW] menu i menu::popup
- [WIP] toolbar
- [WIP] treeview
2025-11-17 22:31:48 +01:00

10 lines
227 B
C++

#pragma once
#include <SDL3/SDL.h>
namespace toolbar
{
void start();
bool button(SDL_Texture* surf, const int sx, const int sy);
bool pushbutton(SDL_Texture* surf, const int sx, const int sy, const bool pushed);
}