12 lines
232 B
C
12 lines
232 B
C
#ifndef DRAW_H_
|
|
#define DRAW_H_
|
|
|
|
#include <gtk/gtk.h>
|
|
#include "Vertex.h"
|
|
#include "Window.h"
|
|
#include "Drawer.h"
|
|
|
|
|
|
gboolean drawTopView(GtkWidget *widget, GdkEventExpose *event, Window *window, Drawer *drawer);
|
|
|
|
#endif /*DRAW_H_*/
|