| OLD | NEW |
| 1 // Copyright (c) 2011 The Native Client Authors. All rights reserved. | 1 // Copyright (c) 2011 The Native Client Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef EXAMPLES_PONG_PONG_H_ | 5 #ifndef EXAMPLES_PONG_PONG_H_ |
| 6 #define EXAMPLES_PONG_PONG_H_ | 6 #define EXAMPLES_PONG_PONG_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "ppapi/c/pp_file_info.h" | 10 #include "ppapi/c/pp_file_info.h" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 pp::Rect court_; | 83 pp::Rect court_; |
| 84 int32_t delta_x_; | 84 int32_t delta_x_; |
| 85 int32_t delta_y_; | 85 int32_t delta_y_; |
| 86 int player_score_; | 86 int player_score_; |
| 87 int computer_score_; | 87 int computer_score_; |
| 88 }; | 88 }; |
| 89 | 89 |
| 90 } // namespace pong | 90 } // namespace pong |
| 91 | 91 |
| 92 #endif // EXAMPLES_PONG_PONG_H_ | 92 #endif // EXAMPLES_PONG_PONG_H_ |
| OLD | NEW |