| Rev | Line | |
|---|
| [12255] | 1 | #ifndef MOUSEAPIEXAMPLE_H |
|---|
| 2 | #define MOUSEAPIEXAMPLE_H |
|---|
| 3 | |
|---|
| 4 | #include "OrxonoxPrereqs.h" |
|---|
| 5 | #include "core/XMLPort.h" |
|---|
| 6 | #include "mouseapi.h" |
|---|
| 7 | #include "util/output/OutputManager.h" |
|---|
| 8 | #include "util/output/ConsoleWriter.h" |
|---|
| [12271] | 9 | #include "worldentities/ControllableEntity.h" |
|---|
| [12255] | 10 | #include "core/CoreIncludes.h" |
|---|
| [12285] | 11 | #include <list> |
|---|
| 12 | #include <stdlib.h> |
|---|
| [12255] | 13 | |
|---|
| 14 | namespace orxonox |
|---|
| 15 | { |
|---|
| [12271] | 16 | class MouseAPIExample : public ControllableEntity |
|---|
| [12255] | 17 | { |
|---|
| 18 | public: |
|---|
| 19 | MouseAPIExample(Context *context); |
|---|
| 20 | ~MouseAPIExample(); |
|---|
| 21 | virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); |
|---|
| 22 | void testfunction(MouseButtonCode::ByEnum mouse); |
|---|
| [12285] | 23 | static std::list<MouseAPIExample> blocks; |
|---|
| [12255] | 24 | }; |
|---|
| 25 | } |
|---|
| 26 | #endif // MOUSEAPIEXAMPLE_H |
|---|
Note: See
TracBrowser
for help on using the repository browser.