add some legacy #defines
This commit is contained in:
parent
3ffa4cc549
commit
7394f79da5
5 changed files with 30 additions and 28 deletions
14
tests/test_defines.py
Normal file
14
tests/test_defines.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
"""
|
||||
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)
|
Reference in a new issue