This file contains hidden or 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
| #include <SDL.h> | |
| #include <glad/glad.h> | |
| #include <iostream> | |
| #include <vector> | |
| int gScreenWidth = 640; | |
| int gScreenHeight = 480; | |
| int quit = 0; |
This file contains hidden or 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
| #!/bin/bash | |
| # build_sdl_app.sh | |
| # Builds SharkShark.app bundle (no signing) | |
| # Assumes: | |
| # - Folder "SharkShark" next to this script | |
| # - Icon file "SharkShark.icns" next to this script | |
| # - Executable SharkShark inside "SharkShark/" | |
| # - SDL frameworks inside "SharkShark/" | |
| SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" |
OlderNewer