diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 17:07:17 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 17:07:32 -0600 |
commit | 3b7089411bda77af8e0b0080a20c934e579ff1f8 (patch) | |
tree | c499f568049e0772ab111c2a16c7102d85f32c9f | |
parent | 12c06174d8af879377d5d6be35f474032316eb9b (diff) |
add character encoding headers to other files
-rw-r--r-- | extras/move_constants.py | 2 | ||||
-rw-r--r-- | extras/pointers.py | 1 | ||||
-rw-r--r-- | extras/pokemon_constants.py | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/extras/move_constants.py b/extras/move_constants.py index 929f1fad3..a20af8536 100644 --- a/extras/move_constants.py +++ b/extras/move_constants.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + moves = { 0x01: "POUND", 0x02: "KARATE_CHOP", diff --git a/extras/pointers.py b/extras/pointers.py index f3922417b..6a1d24241 100644 --- a/extras/pointers.py +++ b/extras/pointers.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- """ Various functions related to pointer and address math. Mostly to avoid depedency loops. """ diff --git a/extras/pokemon_constants.py b/extras/pokemon_constants.py index 33b6a0ed7..221a31cd0 100644 --- a/extras/pokemon_constants.py +++ b/extras/pokemon_constants.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + pokemon_constants = { 1: "BULBASAUR", 2: "IVYSAUR", |