Add blank pixelbot class.

This commit is contained in:
Starbeamrainbowlabs 2016-10-21 21:19:22 +01:00
parent 6f020a6d3b
commit f9d6b7a882
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#pragma once
class PixelBot
{
public:
PixelBot();
~PixelBot();
private:
};

View File

@ -0,0 +1,10 @@
#include "PixelBot.h"
PixelBot::PixelBot()
{
}
PixelBot::~PixelBot()
{
}