Maxwell Henderson | c3d063a | 2023-12-26 17:37:22 -0800 | [diff] [blame^] | 1 | #include "y2024_defense/constants.h" |
| 2 | |
| 3 | #include <cinttypes> |
| 4 | #include <map> |
| 5 | |
| 6 | #if __has_feature(address_sanitizer) |
| 7 | #include "sanitizer/lsan_interface.h" |
| 8 | #endif |
| 9 | |
| 10 | #include "absl/base/call_once.h" |
| 11 | #include "glog/logging.h" |
| 12 | |
| 13 | #include "aos/mutex/mutex.h" |
| 14 | #include "aos/network/team_number.h" |
| 15 | |
| 16 | namespace y2024_defense { |
| 17 | namespace constants { |
| 18 | |
| 19 | Values MakeValues(uint16_t team) { |
| 20 | LOG(INFO) << "creating a Constants for team: " << team; |
| 21 | |
| 22 | Values r; |
| 23 | |
| 24 | return r; |
| 25 | } |
| 26 | |
| 27 | Values MakeValues() { return MakeValues(aos::network::GetTeamNumber()); } |
| 28 | |
| 29 | } // namespace constants |
| 30 | } // namespace y2024_defense |