ocarina/libsaria/__init__.py
Bryan Schumaker 52b1236b29 Collection work
I've begun work on a generic collection class for the library, playlist,
and queue.  Tagpy functions have been merged into the
libsaria.collections.__init__.py file to make things easier.
2010-08-08 14:30:15 -04:00

21 lines
331 B
Python

# Bryan Schumaker (8/7/2010)
__all__ = [ "collection", "music",
"data", "event", "map", "path"]
import event
import path
from map import Map
# Variables are not saved across sessions, but preferences are
vars = None
prefs = None
def startup():
global vars
global prefs
vars = Map()
prefs = Map()
event.start("POSTINIT")