#include "hge.h"#include "hgesprite.h"const int screen_width = 535;const int screen_height = 656;HGE *hge = NULL;hgeSprite *spr;//声明一个精灵类指针;HTEXTURE tex;//定义一个纹理对象;HEFFECT snd;//声音;//逻辑函数;bool FrameFunc(){ hge->Effect_PlayEx(snd,50); return false;}//绘制和渲染函数;bool RenderFunc(){ hge->Gfx_Be...
在vs2008中有时候链接会出现这样的错误:LINK : fatal error LNK1104: cannot open file 'LIBC.lib'解决方法:在项目的属性中,选择linker->Command Line->additional options中添加/nodefaultlib:libc即可注意是linker中,不是C/C++中