コードをコンパイルしようとしたときに端末から表示されるエラーは次のとおりです
/*This is the init file that controls all the major background processes
will contain major bliting of backgrounds,surfaces, and handle collision
*/
#ifndef_init_H_
#define _init_H_
#include <SDL>
class init{
private:
bool Running;
SDL_Surface* Surf_Display;
public:
init();
int OnExecute();
public:
bool OnInit();
void OnEvent(SDL_Event* Event);
void OnLoop();
void OnRender();
void OnCleanup();
};
ご参考までに、sdltutorials.com からほとんどコピーしたコードを次に示します。私は彼らの基本的なチュートリアルを使用しました。sdl と自分の OS でリンク エラーが発生している可能性があると思いますが、わかりません。