Stefan Schuermans commited on 2019-07-07 18:24:58
Showing 1 changed files, with 10 additions and 10 deletions.
... | ... |
@@ -28,16 +28,6 @@ |
28 | 28 |
|
29 | 29 |
namespace Blinker { |
30 | 30 |
|
31 |
-/// descriptor for delay value |
|
32 |
-Pong::ValueDescr const Pong::c_delayDescr = { 200, 100, 500 }; |
|
33 |
-/// descriptor for maximum score value |
|
34 |
-Pong::ValueDescr const Pong::c_maxScoreDescr = { 9, 1, 99 }; |
|
35 |
- |
|
36 |
-/// operator connection name suffix for left player's connection |
|
37 |
-std::string const Pong::c_opConnSuffixLeft = "/left"; |
|
38 |
-/// operator connection name suffix for right player's connection |
|
39 |
-std::string const Pong::c_opConnSuffixRight = "/right"; |
|
40 |
- |
|
41 | 31 |
/** |
42 | 32 |
* @brief constructor |
43 | 33 |
* @param[in] name module name |
... | ... |
@@ -705,5 +695,15 @@ void Pong::gameOver() |
705 | 695 |
deactivate(); |
706 | 696 |
} |
707 | 697 |
|
698 |
+/// descriptor for delay value |
|
699 |
+Pong::ValueDescr const Pong::c_delayDescr = { 200, 100, 500 }; |
|
700 |
+/// descriptor for maximum score value |
|
701 |
+Pong::ValueDescr const Pong::c_maxScoreDescr = { 9, 1, 99 }; |
|
702 |
+ |
|
703 |
+/// operator connection name suffix for left player's connection |
|
704 |
+std::string const Pong::c_opConnSuffixLeft = "/left"; |
|
705 |
+/// operator connection name suffix for right player's connection |
|
706 |
+std::string const Pong::c_opConnSuffixRight = "/right"; |
|
707 |
+ |
|
708 | 708 |
} // namespace Blinker |
709 | 709 |
|
710 | 710 |