config: all particles now take a 'on_click_template' argument

This commit is contained in:
Daniel Eklöf 2018-12-29 21:23:27 +01:00
parent 3eebdbb5b0
commit 86425fbe48
7 changed files with 56 additions and 35 deletions

View file

@ -1,4 +1,5 @@
#pragma once
#include "../particle.h"
struct particle *particle_empty_new(int left_margin, int right_margin);
struct particle *particle_empty_new(
int left_margin, int right_margin, const char *on_click_template);