rotagon/polygons.h

24 lines
452 B
C
Raw Normal View History

2015-01-01 05:03:28 +00:00
/*
** polygons.h - <+DESC+>
**
** 2014 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
*/
#ifndef POLYGONS_H
#define POLYGONS_H
void
2015-01-01 05:19:10 +00:00
draw_polygon(struct s_game *g);
2015-01-01 05:03:28 +00:00
void
draw_hexagon_side(struct s_game *g, int faceno, int dist, int thick, int col);
2015-01-01 12:12:40 +00:00
void
draw_square_side(struct s_game *g, int faceno, int dist, int thick, int col);
void
draw_triangle_side(struct s_game *g, int faceno, int dist, int thick, int col);
2015-01-01 05:03:28 +00:00
#endif /* ndef POLYGONS_H */