more header fixes

This commit is contained in:
deepfriedwaffles
2026-03-19 11:06:55 -04:00
parent 2d731bc3b6
commit 04aea27334
9 changed files with 59 additions and 20 deletions

View File

@@ -12,13 +12,13 @@ SmallButton::SmallButton( int id, int x, int y, int width, int height, const std
{
}
SmallButton::SmallButton( int id, int x, int y, Options::Option* item, const std::string& msg )
SmallButton::SmallButton( int id, int x, int y, Option* item, const std::string& msg )
: super(id, x, y, 150, 20, msg),
option(item)
{
}
Options::Option* SmallButton::getOption()
Option* SmallButton::getOption()
{
return option;
}