Cafu Engine
DialogTransform.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_TRANSFORM_HPP_INCLUDED
8 #define CAFU_DIALOG_TRANSFORM_HPP_INCLUDED
9 
10 #include "Math3D/Vector3.hpp"
11 #include "wx/dialog.h"
12 
13 
14 class TransformDialogT : public wxDialog
15 {
16  public:
17 
18  TransformDialogT(wxWindow* parent=0);
19 
20  Vector3dT m_Value;
21  int m_Mode;
22 };
23 
24 #endif
Definition: DialogTransform.hpp:14