#ifndef BLOCK_H
#define BLOCK_H
#include "pixelGameEngine.h"
class Block{
public:
vf2d pos;
bool markedForDeletion=false;
Block(vf2d pos)
:pos(pos){}
};
#endif