8 lines
201 B
C
8 lines
201 B
C
// src/render/obstacle.h
|
|
#pragma once
|
|
|
|
#include "../assets/obstacle_crawl_frames.h"
|
|
|
|
// Draw the obstacle ASCII block starting at given (x, y)
|
|
void draw_obstacle(int x, int y, CrawlObstacleType type);
|