Meteos/Block.h
sigonasr2 95a110808c Blocks were converted to block clump structure
Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
2022-11-18 04:26:29 -07:00

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