summary refs log tree commit diff
path: root/src/SelOutlineRenderer.h
blob: 709dac11d55d6a4253ec08d89b39dc34dba8d266 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef CC_SELOUTLINERENDERER_H
#define CC_SELOUTLINERENDERER_H
#include "Core.h"
/* Renders an outline around the block the player is looking at.
   Copyright 2014-2023 ClassiCube | Licensed under BSD-3
*/
struct RayTracer;
struct IGameComponent;
extern struct IGameComponent SelOutlineRenderer_Component;

void SelOutlineRenderer_Render(struct RayTracer* selected, cc_bool dirty);
#endif