↧
Answer by Swift Dev Journal for Having trouble using SDL framework on XCode
I see three possible problems. The first problem is how you're including SDL.h in your code. You should include SDL.h with the following code:#include "SDL.h"The second possible problem is you haven't...
View ArticleHaving trouble using SDL framework on XCode
I am having trouble using the SDL framework in my xcode project, my main (all there is in the project at the moment) currently looks like this:#include <SDL/SDL.h>#include <iostream>int...
View Article