提示コードのコメント部のここのコードですのインクルードのコードですがなぜSDL_ttf.hが読み込めないのでしょうか?SDL.hは問題なく読み込めています。ダウンロードしてきたライブラリファイルのincludeファイルを開きましたがそれらしきファイルがありません。バージョンの変化によって消えたものだと思うのですが最新版はどうなっているのでしょうか?公式リファレンスを見ましたがやはりSDL_ttf.hをインストールするようなので対処方法がわかりません。
参考サイト: http://sdl2referencejp.osdn.jp/SDL_ttf-includes.html
公式日本語リファレンス http://sdl2referencejp.osdn.jp/index.html#SDL_ttf
#ifndef ___GAME_H_ #define ___GAME_H_ #include <SDL.h> #include "SDL_ttf.h"////////////////ここのコードです。 //#include <SDL_ttf.h> struct Vector2 { float x; float y; }; //game class class Game { public: Game(); bool Initialize(); void RunLoop(); void Shutdown(); private: void ProcessInput(); void UpdateGame(); void GenerateOutput(); SDL_Window *mWindow; SDL_Renderer *mRenderer; Uint32 mTicksCount; bool mIsRunning; int mPaddleDir; Vector2 mPaddlePos; Vector2 mBallPos; Vector2 mBallVel; }; #endif
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/07/11 04:19 編集
2020/07/11 04:22 編集
退会済みユーザー
2020/07/11 04:33