Created
September 17, 2018 08:18
-
-
Save jzuern/1e865119a780d39df994d49b09d804cd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Landmark { | |
public: | |
Landmark(float x, float y, SDL_Color id); | |
~Landmark(); | |
Position pos; | |
SDL_Color id; | |
void render(SDL_Renderer * ren); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment