source: pycodebattler/trunk/pycodebattler/__init__.py @ 71

Revision 71, 754 bytes checked in by atzm, 13 years ago (diff)

add preamble

  • Property svn:keywords set to Id
Line 
1# -*- coding: utf-8 -*-
2#
3#  Copyright (C) 2010 by Atzm WATANABE <atzm@atzm.org>
4#
5#  This program is free software; you can redistribute it and/or modify it
6#  under the terms of the GNU General Public License (version 2) as
7#  published by the Free Software Foundation.  It is distributed in the
8#  hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
9#  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
10#  PURPOSE.  See the GNU General Public License for more details.
11#
12# $Id$
13#
14
15import pycodebattler.battle
16import pycodebattler.score
17import pycodebattler.scouter
18import pycodebattler.skill
19import pycodebattler.util
20import pycodebattler.warrior
21
22__all__ = ['battle', 'score', 'scouter', 'skill', 'util', 'warrior']
Note: See TracBrowser for help on using the repository browser.