This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
raylib-python-cffi/tests/xtest_defines.py
2022-08-11 21:58:54 +01:00

14 lines
No EOL
253 B
Python

"""
This shows how to use the Pyray wrapper around the static binding.
"""
import pyray as pr
print(pr.WHITE)
print(pr.MOUSE_BUTTON_LEFT)
print(pr.MOUSE_LEFT_BUTTON )
print(pr.MATERIAL_MAP_SPECULAR)
import raylib as rl
print(rl.MATERIAL_MAP_DIFFUSE)