File: st_shared.h

package info (click to toggle)
neverball 1.6.0%2Bgit20180603-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 152,380 kB
  • sloc: ansic: 27,402; makefile: 454; cpp: 208; xml: 177; sh: 161
file content (18 lines) | stat: -rw-r--r-- 557 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef ST_SHARED_H
#define ST_SHARED_H

#include "state.h"
#include "util.h"

void shared_leave(struct state *, struct state *next, int id);
void shared_paint(int id, float st);
void shared_timer(int id, float dt);
int  shared_point_basic(int id, int x, int y);
void shared_point(int id, int x, int y, int dx, int dy);
int  shared_stick_basic(int id, int a, float v, int bump);
void shared_stick(int id, int a, float v, int bump);
void shared_angle(int id, float x, float z);
int  shared_click_basic(int b, int d);
int  shared_click(int b, int d);

#endif