Metadata-Version: 2.1
Name: windoz
Version: 0.0.5
Summary: Logic Controlling tool
Project-URL: Homepage, https://github.com/Llama-studio/Windoz
Author-email: isaac yan <yaner@example.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Windoz

## Example code

+ -: don't execute, just take the first argument as residual
+ r: repeat next time
+ j: jump in line
+ s: spawn


Frame controlling
``` python
from windoz.windoz import *

print(get_fps(100))
data = World(30)
data.add_event(('r', print_average, [data]))
data.add_event(('s', spawn_timer,[], []))
data.run()
```

