// SPDX-License-Identifier: GPL-2.0-or-later #ifndef _SNAKE_PROGRESS_HPP_ #define _SNAKE_PROGRESS_HPP_ #include <cstdint> struct Progress { uint32_t score; float seconds; }; #endif