blob: fd1b3e8eff6e6ba5d28a88753bcb764f46ee880c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
# R overlay -- main script
# Copyright (C) 2012 André Erdmann <dywi@mailerd.de>
# Distributed under the terms of the GNU General Public License;
# either version 2 of the License, or (at your option) any later version.
import roverlay.main
if __name__ == '__main__':
roverlay.main.main ( False )
|