summaryrefslogtreecommitdiffstats
path: root/Smoke/seedpoint.h
blob: 557f59f6d2cbb837bc5cf2437639a08080bcf8e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _SEEDPOINT_H
#define _SEEDPOINT_H

#define MAX_SEEDPOINTS 16

void create_seedpoint(float mx, float my);
void delete_seedpoint(int seedpoint_nr);
void render_seedpoints(void);

int  get_cur_seedpoint(void);
void set_cur_seedpoint(int seed_nr);

struct point get_seedpoint(int index);

#endif