struct surfacegameprops_t
{
float maxspeedfactor;
float jumpfactor;
float penetrationmodifier;
float damagemodifier;
uint16_t material;
uint8_t climbable;
};
我正在学习,我无法弄清楚如何解决这个问题“c ++不支持default-int”。 我看过其他一些关于同样问题的帖子,但我找不到任何东西。
还有一些未定义的错误。
答案 0 :(得分:1)
类型的全名是std::uint16_t
和std::uint8_t
,表示您需要标准库中的类型。
您还必须加入the proper header <cstdint>
。