2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 00:27:42 +00:00

CRasterFont: Remove ignored maybe_unused attributes

This commit is contained in:
2020-05-27 12:40:35 -04:00
parent 04597c2787
commit 330eeebf08
3 changed files with 29 additions and 28 deletions

View File

@@ -7,13 +7,13 @@ namespace urde {
class CStateManager;
struct CStaticInterferenceSource {
TUniqueId id;
float magnitude;
float timeLeft;
TUniqueId x0_id;
float x4_magnitude;
float x8_timeLeft;
};
class CStaticInterference {
std::vector<CStaticInterferenceSource> m_sources;
std::vector<CStaticInterferenceSource> x0_sources;
public:
explicit CStaticInterference(size_t sourceCount);