platform-test/block.h

18 lines
266 B
C++

//Block class header
#ifndef __BLOCK_H_INLCUDED__
#define __BLOCK_H_INCLUDED__
#include"entity.h"
#include<SDL2/SDL.h>
#include<iostream>
class Entity;
class Block: public Entity{
public:
void print(int x,int y,int w,int h,SDL_Renderer* renderer);
};
#endif