doc/web: Place examples section more visibly.
[Ale.git] / d2 / exclusion.h
blob438980b4119891bd0ad44a29ef23074a1ea51dc3
1 // Copyright 2006 David Hilvert <dhilvert@auricle.dyndns.org>,
2 // <dhilvert@ugcs.caltech.edu>
4 /* This file is part of the Anti-Lamenessing Engine.
6 The Anti-Lamenessing Engine is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 The Anti-Lamenessing Engine is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with the Anti-Lamenessing Engine; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef __exclusion_h__
22 #define __exclusion_h__
25 * Header file for exclusion regions.
29 * Exclusion data structure.
31 * XXX: For now, we're using floating point boundary values;
32 * this might be somewhat inefficient in cases where the values
33 * will always be integer.
36 struct exclusion {
37 enum {RENDER, FRAME};
38 char type;
40 ale_pos x[6];
43 #endif