Cafu Engine
DialogGotoPrimitive.hpp
1 /*
2 Cafu Engine, http://www.cafu.de/
3 Copyright (c) Carsten Fuchs and other contributors.
4 This project is licensed under the terms of the MIT license.
5 */
6 
7 #ifndef CAFU_DIALOG_GOTO_PRIMITIVE_HPP_INCLUDED
8 #define CAFU_DIALOG_GOTO_PRIMITIVE_HPP_INCLUDED
9 
10 #include "wx/wx.h"
11 
12 
13 /// A dialog for finding and selecting a primitive by number.
14 class GotoPrimitiveDialogT : public wxDialog
15 {
16  public:
17 
18  GotoPrimitiveDialogT(wxWindow* parent=0);
19 
20  int m_EntityNumber;
21  int m_PrimitiveNumber;
22 };
23 
24 #endif
A dialog for finding and selecting a primitive by number.
Definition: DialogGotoPrimitive.hpp:14