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
### bash-git-prompt | |
if [ -f "/usr/local/opt/bash-git-prompt/share/gitprompt.sh" ]; then | |
__GIT_PROMPT_DIR="/usr/local/opt/bash-git-prompt/share" | |
source "/usr/local/opt/bash-git-prompt/share/gitprompt.sh" | |
fi | |
### bash-completion | |
[[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && . "/usr/local/etc/profile.d/bash_completion.sh" | |
GIT_PS1_SHOWDIRTYSTATE=true |
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
#include <SDL.h> | |
// Window size | |
#define WINDOW_WIDTH 640 | |
#define WINDOW_HEIGHT 480 | |
// Image size | |
#define IMAGE_WIDTH 256 | |
#define IMAGE_HEIGHT 256 |