1 /* 2 * Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 * Copyright 2015, Augustin Cavalier <waddlesplash>. All rights reserved. 4 * Distributed under the terms of the MIT License. 5 * 6 * Effect from corTeX / Optimum. 7 */ 8 #ifndef NEBULA_DRAWSTARS_H 9 #define NEBULA_DRAWSTARS_H 10 11 12 void draw_stars(int star_width, char* dstParam, char incParam); 13 14 15 #endif /* NEBULA_DRAWSTARS_H */ 16