wow, I created ground and fire

这个提交存在于:
elwld 2022-07-10 01:12:20 +05:00
父节点 c14d6e6c59
当前提交 2288fb8d15
共有 14 个文件被更改,包括 185 次插入48 次删除

7
src/game/Ground.h 普通文件
查看文件

@ -0,0 +1,7 @@
#include "StaticObject.h"
class Ground: public StaticObject
{
public:
Ground(int x, int y): StaticObject(x, y, 128, 128, (SDL_Rect){0,0,16,16}){}
};