diff options
author | Treeki <treeki@gmail.com> | 2012-08-29 19:40:50 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-08-29 19:40:50 +0200 |
commit | 7e177703c0380ebf9d6afe9f27df4db24903d6ad (patch) | |
tree | 088c0237035b4cc684150e295a5412badf757aec /src/main.py | |
parent | a0fb27c3f890aec576e09754b2e008459956e1f7 (diff) | |
parent | b7ae37e17b8704a6ba3779625c65d1bb05bec251 (diff) | |
download | koopatlas-7e177703c0380ebf9d6afe9f27df4db24903d6ad.tar.gz koopatlas-7e177703c0380ebf9d6afe9f27df4db24903d6ad.zip |
Merge branch 'master' of tsn:Koopatlas ARGH
Diffstat (limited to '')
-rw-r--r-- | src/main.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/main.py b/src/main.py index f417d94..951e927 100644 --- a/src/main.py +++ b/src/main.py @@ -76,9 +76,15 @@ class KP: tsInfo['hash'] = newHash from tileset import KPTileset - print "Loading set: %s" % name + + import time + b = time.clock() + cls.loadedTilesets[name] = KPTileset.loadFromArc(data) - + + e = time.clock() + print "Loading set: {0} in {1}".format(name, e-b) + @classmethod def tileset(cls, name): |