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

14 lines
198 B
C++
Raw Normal View History

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