comparison mde/events.d @ 63:66d555da083e

Moved many modules/packages to better reflect usage.
author Diggory Hardy <diggory.hardy@gmail.com>
date Fri, 27 Jun 2008 18:35:33 +0100
parents 7cab2af4ba21
children 56c0ddd90193
comparison
equal deleted inserted replaced
62:960206198cbd 63:66d555da083e
11 See the GNU General Public License for more details. 11 See the GNU General Public License for more details.
12 12
13 You should have received a copy of the GNU General Public License 13 You should have received a copy of the GNU General Public License
14 along with this program. If not, see <http://www.gnu.org/licenses/>. */ 14 along with this program. If not, see <http://www.gnu.org/licenses/>. */
15 15
16 /// Handles all events from SDL_PollEvent. 16 /** Handling for all events from SDL_PollEvent.
17 *
18 * Handles some events, including a quit-request and window resizing, and passes the rest on to the
19 * input system. */
17 module mde.events; 20 module mde.events;
18 21
19 import imde = mde.imde; 22 import imde = mde.imde;
20 import sdl = mde.sdl; // resizeWindow 23 import sdl = mde.setup.sdl; // resizeWindow
21 24
22 import mde.input.Input; 25 import mde.input.Input;
23 26
24 import derelict.sdl.events; 27 import derelict.sdl.events;
25 28