gpt4 book ai didi

c++ - 错误 C2065 : 'frame' : undeclared identifier

转载 作者:行者123 更新时间:2023-11-30 05:40:30 26 4
gpt4 key购买 nike

所以我正在使用 C++ 和 visual studio 阅读一本游戏编程入门书,但我遇到了一个明显的全局变量框架的问题,并且开始时间没有被声明。

这是标题

void Sprite_Animate(int &frame, int startframe, int endframe, int direction, int &starttime, int delay);

这里是定义函数的cpp文件

//Animates a sprite
void Sprite_Animate(int &frame, int startframe, int endframe, int direction, int &starttime, int delay)
{
if ((int)GetTickCount() > starttime + delay)
{
starttime = GetTickCount();

frame += direction;
if (frame > endframe) frame = startframe;
if (frame < startframe) frame = endframe;
}
}

和我遇到错误的其他 cpp 文件

//animate and draw the sprite
Sprite_Animate(frame, 0, 24, 1, starttime, 30);

我在我的错误输出中得到这个:

Error   1   error C2065: 'frame' : undeclared identifier    c:\users\foster\documents\visual studio 2013\projects\animate sprite demo\animate sprite demo\mygame.cpp    50  1   Animate Sprite Demo
Error 2 error C2065: 'starttime' : undeclared identifier c:\users\foster\documents\visual studio 2013\projects\animate sprite demo\animate sprite demo\mygame.cpp 50 1 Animate Sprite Demo
Error 3 error C2065: 'frame' : undeclared identifier c:\users\foster\documents\visual studio 2013\projects\animate sprite demo\animate sprite demo\mygame.cpp 51 1 Animate Sprite Demo

如果您需要更多信息,请告诉我。

最佳答案

需要先声明变量:

int frame;
int starttime;

//animate and draw the sprite
Sprite_Animate(frame, 0, 24, 1, starttime, 30);

关于c++ - 错误 C2065 : 'frame' : undeclared identifier,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31600866/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com