aboutsummaryrefslogtreecommitdiff
path: root/src/survive_disambiguator.c
blob: 1ceaf27abe803d60d1681e775d4de11c24873b61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "survive.h"

#define USE_TURVEYBIGUATOR

void handle_lightcap_charlesbiguator(SurviveObject *so, LightcapElement *le);
void handle_lightcap_turveybiguator(SurviveObject *so, LightcapElement *le);

void handle_lightcap(SurviveObject *so, LightcapElement *le) {
#ifdef USE_TURVEYBIGUATOR
	handle_lightcap_turveybiguator(so, le);
#else
	handle_lightcap_charlesbiguator(so, le);
#endif
}