generated from AMay/CPlusPlusProjectTemplate
11 lines
146 B
C++
11 lines
146 B
C++
#ifndef BLOCK_H
|
|
#define BLOCK_H
|
|
#include "pixelGameEngine.h"
|
|
|
|
class Block{
|
|
public:
|
|
vf2d pos;
|
|
Block(vf2d pos)
|
|
:pos(pos){}
|
|
};
|
|
#endif |