Automation/src/tiles/grass.cpp
Quantum 439051e52c
Initial Commit
Late as shit... as usual
2021-03-14 21:13:29 -04:00

10 lines
205 B
C++

#include "tiles/grass.h"
void Grass::render(Render r, Vector2<int>pos, Vector2<int>size) {
r.fill_rectangle_sz(
pos * (TILE_SIZE + 1),
size * TILE_SIZE,
{7, 176, 52}
);
}