view LightClone/Source/Event.h @ 15:ee1c2510096d

Work on GUI system
author koryspansel <koryspansel@bendbroadband.com>
date Wed, 14 Sep 2011 11:04:18 -0700
parents c046b9e8ae32
children
line wrap: on
line source

/*
 * Event
 */

#ifndef __EVENT_H__
#define __EVENT_H__

#include "Core.h"

/*
 * EventResult
 */
enum
{
	EventResult_Stop,
	EventResult_Continue,
	EventResult_Error,	
};

/*
 * Event
 */
struct Event
{
	/*
	 * nType
	 */
	uint32 nType;
};

#endif //__EVENT_H__