| 1234567891011121314151617 |
- /******************************************************************************/
- /******************************************************************************/
- class NewProjWin : ClosableWindow
- {
- Text t_name;
- TextLine name;
- Button ok;
- static void OK(NewProjWin &npw);
- void create();
- virtual void update(C GuiPC &gpc)override;
- };
- /******************************************************************************/
- /******************************************************************************/
- extern NewProjWin NewProj;
- /******************************************************************************/
|