#!/usr/bin/env python

#
# mSaber
#
# Copyright (c) 2009 Khertan (Benoit HERVIER)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#        
# Khertan (Benoit HERVIER) khertan@khertan.net
#

import hildon
import osso
import sys
import pygame.mixer

sys.path.append('/usr/lib/msaber')

#############################################################################
# @brief Main
#############################################################################
if __name__ == '__main__':

  app = hildon.Program()
  try:
    osso_context = osso.Context("net.khertan.msaber", "1.0.0", False)
  except:
    osso_context = None

  import msaber
  pygame.mixer.init()
  m = msaber.mSaber() 
