From 4d8088efd6718960e5b08068165df705e63f5ef5 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 11 Sep 2010 23:47:05 +0900 Subject: [PATCH] Remove unused file. --- tools/Forge/Bundles/MapEdit/Brush.h | 56 ----------------------------- 1 file changed, 56 deletions(-) delete mode 100644 tools/Forge/Bundles/MapEdit/Brush.h diff --git a/tools/Forge/Bundles/MapEdit/Brush.h b/tools/Forge/Bundles/MapEdit/Brush.h deleted file mode 100644 index a25dbc7b5..000000000 --- a/tools/Forge/Bundles/MapEdit/Brush.h +++ /dev/null @@ -1,56 +0,0 @@ -#ifndef Brush_h -#define Brush_h - -#include -#include "SetBrush.h" -#include "EditWindow.h" - -extern id brush_i; - -extern BOOL brushdraw; // YES when drawing cutbrushes and ents - -@interface Brush:SetBrush { - id cutbrushes_i; - id cutentities_i; - boolean updatemask[MAXBRUSHVERTEX]; - BOOL dontdraw; // for modal instance loops - BOOL deleted; // when not visible at all -} - --init; - --initFromSetBrush:br; - --deselect; --(BOOL) isSelected; - --(BOOL) XYmouseDown:(NSPoint *) pt; // return YES if brush handled --(BOOL) ZmouseDown:(NSPoint *) pt; // return YES if brush handled - --_keyDown:(NSEvent *) theEvent; - --(NSPoint) centerPoint; // for camera flyby mode - --InstanceSize; --XYDrawSelf; --ZDrawSelf; --CameraDrawSelf; - --flipHorizontal:sender; --flipVertical:sender; --rotate90:sender; - --makeTall:sender; --makeShort:sender; --makeWide:sender; --makeNarrow:sender; - --placeEntity:sender; - --cut:sender; --copy:sender; - --addBrush; - -@end -#define Brush_h