mirror of
https://github.com/ENSL/NS.git
synced 2024-11-13 00:24:38 +00:00
4f13237895
Change CRLF to LF in repo.
15 lines
No EOL
319 B
C++
15 lines
No EOL
319 B
C++
#ifndef AVH_UI_FACTORY_H
|
|
#define AVH_UI_FACTORY_H
|
|
|
|
#include "ui/UIFactory.h"
|
|
class CSchemeManager;
|
|
|
|
// Knows how to build custom mod-specific components
|
|
class AvHUIFactory : public UIFactory
|
|
{
|
|
public:
|
|
virtual UIComponent* BuildComponent(const TRDescription& inTextRep, CSchemeManager* inSchemeManager);
|
|
|
|
};
|
|
|
|
#endif |