1 #ifndef CABLE_H
2 #define CABLE_H
3 
4 #include "types.h"
5 
6 void Cable_setup(Cable **cablep);
7 void Cable_draw(Cable *cable);
8 void Cable_update(Cable *cable);
9 int Cable_onspark(Cable *cable, int locx, int locy);
10 void Cable_reset(Cable *cable);
11 
12 #endif
13