15 lines
286 B
Python
15 lines
286 B
Python
# Python code to start a DecoderPro app, complete with menu bar
|
|
#
|
|
# Author: Bob Jacobsen, copyright 2004
|
|
# Part of the JMRI distribution
|
|
|
|
import jmri
|
|
|
|
# start the program
|
|
import apps
|
|
apps.DecoderPro.DecoderPro.main([])
|
|
|
|
# define the usual defaults
|
|
execfile("jython/jmri_defaults.py")
|
|
|