blob: 00f74b91c6546db387cd4440030b85af3fc65800 [file] [log] [blame]
Maxwell Hendersonc3d063a2023-12-26 17:37:22 -08001#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"
Austin Schuh99f7c6a2024-06-25 22:07:44 -070011#include "absl/log/check.h"
12#include "absl/log/log.h"
Maxwell Hendersonc3d063a2023-12-26 17:37:22 -080013
14#include "aos/mutex/mutex.h"
15#include "aos/network/team_number.h"
16
Stephan Pleinesf63bde82024-01-13 15:59:33 -080017namespace y2024_defense::constants {
Maxwell Hendersonc3d063a2023-12-26 17:37:22 -080018
19Values MakeValues(uint16_t team) {
20 LOG(INFO) << "creating a Constants for team: " << team;
21
22 Values r;
23
24 return r;
25}
26
27Values MakeValues() { return MakeValues(aos::network::GetTeamNumber()); }
28
Stephan Pleinesf63bde82024-01-13 15:59:33 -080029} // namespace y2024_defense::constants