Difference between revisions of "Most important events"

From CEGUI Wiki - Crazy Eddie's GUI System (Open Source)
Jump to: navigation, search
(No difference)

Revision as of 10:52, 5 May 2007

This article is going to show you the most important and usefull events of each widget.

Getting started

EventGalore.h

#ifndef _EventGalore_h_
#define _EventGalore_h_


#include "CEGuiSample.h"
#include "CEGUI.h"


class EventGalore : public CEGuiSample
{
public:
   bool initialiseSample()
   {

using namespace CEGUI;

       return true;
   }
   void cleanupSample(void)
   {
   }
};
#endif // _WidgetGalore_h_