Add blank pixelbot class.
This commit is contained in:
parent
6f020a6d3b
commit
f9d6b7a882
2 changed files with 22 additions and 0 deletions
12
PixelHub-Client/PixelBot.h
Normal file
12
PixelHub-Client/PixelBot.h
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
class PixelBot
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
PixelBot();
|
||||||
|
~PixelBot();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
};
|
||||||
|
|
10
PixelHub-Client/PixelBut.cpp
Normal file
10
PixelHub-Client/PixelBut.cpp
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#include "PixelBot.h"
|
||||||
|
|
||||||
|
PixelBot::PixelBot()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
PixelBot::~PixelBot()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
Reference in a new issue