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
from gamebot import GameBot | |
class Bot(GameBot): | |
# Possible directions where a unit can move to | |
# self.NW, self.N, self.NE, self.E, self.SE, self.S, self.SW, self.W | |
# game_map : Is a python dictionary: | |
# - key = (x, y) that indicates a coordinate. x and y are integers. | |
# - value = a Tile object. |
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/sh | |
USAGE="list | <types> ..." | |
LONG_USAGE="Generate/Append the repo's .gitignore file using the gitignore.io api | |
`curl -s http://gitignore.io/api/`" | |
SUBDIRECTORY_OK= | |
OPTIONS_SPEC= | |
. "$(git --exec-path)/git-sh-setup" |