summaryrefslogtreecommitdiff
path: root/src/elements/smke.c
blob: 91318ba359550c3fa25966cc8d9ed18638e14ead (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <element.h>

int graphics_SMKE(GRAPHICS_FUNC_ARGS)
{
	*colr = 55;
	*colg = 55;
	*colb = 55;
	
	*firea = 75;
	*firer = 55;
	*fireg = 55;
	*fireb = 55;
	
	*pixel_mode = PMODE_NONE; //Clear default, don't draw pixel
	*pixel_mode |= FIRE_BLEND;
	//Returning 1 means static, cache as we please
	return 1;
}