stuff-from-scratch/src/client/TopBar.cpp

12 lines
178 B
C++
Raw Normal View History

2020-06-27 09:47:30 +00:00
#include "TopBar.h"
TopBar::TopBar()
{
SetBackgroundColor(Color::Create(50, 50, 50));
}
std::unique_ptr<TopBar> TopBar::Create()
{
return std::make_unique<TopBar>();
}