10 lines
205 B
C++
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}
|
|
);
|
|
}
|
|
|