
--- TFF Paint - version 0.1.0 ---

	TFF Paint is a image editor that is designed to be simple, minimalistic, and light weight.

	TFF Paint is provided for free. Do not trust anyone who tries to sell TFF Paint.
	See https://sundee.neocities.org/ for updates and other programs.

	This program is for Windows only. Tested on Windows 7 only.
	Linux version may be made some day.
	Mac version never.


--- About cache files ---

	cache/recent_files.txt - Stores a list of recently opened files, they are listed in the main
		menu.
	
	cache/tffpaint.state - Stores some information about the current state of the program, so they
		can be restored next time the program opens. The contents are defined as follows:
		struct {
			u32 state_file_version;
			
			union {
				struct {
					bool window_always_on_top : 1;
					bool color2_selected : 1;
					bool replace_color : 1;
					bool always_center_on_zoom : 1;
					bool fill_color_mode : 1;
				};
				u8 space [128/8];
			};
			
			i32 window_x;
			i32 window_y;
			i32 window_w;
			i32 window_h;
			u8:enum window_state;
			
			f32 color1 [4];
			f32 color2 [4];
			u8:enum tool;
			i32 brush_size;
			i32 air_brush_size;
			i32 air_brush_density;
			i32 eraser_size;
			u8 fill_tolerance;
		}
