summaryrefslogtreecommitdiff
path: root/main.h
blob: b49d5077f4ac72cb6e85309ef7f6183de6b43346 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_draw.H>

class Fl_Window_draw : public Fl_Window{
public:
	Fl_Window_draw(int w,int h,const char *title);
	Fl_Window_draw(int x,int y,int w,int h,const char *label);
	void draw(void);
};