Initial source commit

This commit is contained in:
Tony Bark 2025-10-03 02:19:59 -04:00
commit f1384c11ee
335 changed files with 52715 additions and 0 deletions

View file

@ -0,0 +1,31 @@
/*
* Modification History
*
* 2001-September-15 Jason Rohrer
* Created.
*/
#ifndef GUI_COMPONENT_INCLUDED
#define GUI_COMPONENT_INCLUDED
#include "minorGems/ui/GUIComponent.h"
/**
* An generic superclass for all gui components.
* Allows for easy event source determination during event passing.
*
* @author Jason Rohrer
*/
class GUIComponent {
};
#endif