Galaxie EveLoop 0.1.5 documentation


Navigation:   | Index   | Search   | Top   | Up   |
Table of Content: |

© Copyright 2021-2024, Galaxie EveLoop Team all right reserved.

Top » Module code » glxeveloop.loop.loop

Source code for glxeveloop.loop.loop

from glxeveloop.properties.debug import DebugProperty
from glxeveloop.properties.hooks import HooksProperty
from glxeveloop.properties.queue import QueueProperty
from glxeveloop.properties.timer import TimerProperty
from glxeveloop.properties.running import RunningProperty
from glxeveloop.loop.start import Start
from glxeveloop.loop.stop import Stop
from glxeveloop.loop.handle_events import HandleEvents
from glxeveloop.loop.sequence import SequenceLoop


[docs] class Loop( DebugProperty, QueueProperty, HooksProperty, RunningProperty, TimerProperty, Start, Stop, HandleEvents, SequenceLoop, ): def __init__(self): DebugProperty.__init__(self) QueueProperty.__init__(self) HooksProperty.__init__(self) RunningProperty.__init__(self) TimerProperty.__init__(self) Start.__init__(self) Stop.__init__(self) HandleEvents.__init__(self) SequenceLoop.__init__(self)

Top » Module code » glxeveloop.loop.loop

© Copyright 2021-2024, Galaxie EveLoop Team all right reserved.
This page is licensed under the GNU General Public License v3 or later (GPLv3+).
Examples, recipes, and other code in the documentation are additionally licensed under the Zero Clause BSD License.
See History and License for more information.

Last updated on None.
Created using Sphinx 7.3.7.