Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/run.py
blob: d22b76d15d4515b367ea1189a922edb12eb41f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import olpcgames, pygame, logging
import os, sys
sys.path.append(os.getcwd()+'/src')
sys.path.append(os.getcwd()+'/lib')
# Algo de esto habria que agregar para que el club de othello utilice el festival que acompana el paquete
#env = dict(os.environ)
#env['LD_LIBRARY_PATH'] = tse_dir

import club_othello

def main():
    club_othello.init_game()

if __name__ == "__main__":
    main()