-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Big refactoring into driver based structure, for pyisntaller to work
- Loading branch information
Showing
11 changed files
with
28 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
c: | ||
python3 sightstone/main.py | ||
d: | ||
python3 driver.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Driver code for sightstone | ||
from sightstone import main | ||
|
||
main.main() |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# Sightstone as a package(depends on ../lib/) | ||
|
||
# sightstone.py | ||
from .sightstone import Sightstone | ||
|
||
# league_api_hook.py | ||
from .lca_hook import LeagueConnection | ||
|
||
# gui.py | ||
from .gui import WIDTH, HEIGHT | ||
from .gui import init_gui | ||
|
||
# main.py | ||
from .main import main | ||
# # sightstone.py | ||
# from .sightstone import Sightstone | ||
# | ||
# # league_api_hook.py | ||
# from .lca_hook import LeagueConnection | ||
# | ||
# # gui.py | ||
# from .gui import WIDTH, HEIGHT | ||
# from .gui import init_gui | ||
# | ||
# # main.py | ||
# from .main import main |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.