Remove empty constructor

This commit is contained in:
Magnus Norddahl 2016-11-28 17:34:32 +01:00
parent e9e7839133
commit 09891291c2
2 changed files with 0 additions and 7 deletions

View file

@ -389,11 +389,6 @@ Drawers *Drawers::Instance()
return &drawers;
}
Drawers::Drawers()
{
// To do: setup pointers
}
FString DrawWallArgs::ToString()
{
FString info;

View file

@ -261,8 +261,6 @@ inline int NumTriBlendModes() { return (int)TriBlendMode::TranslateRevSub + 1; }
class Drawers
{
public:
Drawers();
static Drawers *Instance();
void(*DrawColumn)(const DrawColumnArgs *, const WorkerThreadData *) = nullptr;