diff --git a/.gitignore b/.gitignore index 5d381cc..f295d3d 100644 --- a/.gitignore +++ b/.gitignore @@ -158,5 +158,5 @@ cython_debug/ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ +.idea/ diff --git a/launcher.py b/launcher.py new file mode 100644 index 0000000..586f6e8 --- /dev/null +++ b/launcher.py @@ -0,0 +1,2 @@ +if __name__ == '__main__': + import src.main diff --git a/src/engine.py b/src/engine.py new file mode 100644 index 0000000..0381a80 --- /dev/null +++ b/src/engine.py @@ -0,0 +1,6 @@ +class Engine: + def __init__(self): + pass + + def loop(self): + pass diff --git a/src/main.py b/src/main.py new file mode 100644 index 0000000..1f9775b --- /dev/null +++ b/src/main.py @@ -0,0 +1,4 @@ +from engine import Engine + +engine = Engine() +engine.loop() diff --git a/src/renderer.py b/src/renderer.py new file mode 100644 index 0000000..67b57c5 --- /dev/null +++ b/src/renderer.py @@ -0,0 +1,6 @@ +class Renderer: + def __init__(self): + pass + + def loop(self): + pass