raylib 5.5.0.0.dev3__cp39-cp39-macosx_10_13_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of raylib might be problematic. Click here for more details.
- pyray/__init__.py +160 -0
- pyray/__init__.pyi +4342 -0
- raylib/__init__.py +24 -0
- raylib/__init__.pyi +4121 -0
- raylib/_raylib_cffi.cpython-39-darwin.so +0 -0
- raylib/build.py +254 -0
- raylib/colors.py +41 -0
- raylib/defines.py +516 -0
- raylib/enums.py +720 -0
- raylib/glfw3.h.modified +5618 -0
- raylib/physac.h.modified +165 -0
- raylib/raygui.h.modified +865 -0
- raylib/raylib.h.modified +1441 -0
- raylib/raymath.h.modified +247 -0
- raylib/rlgl.h.modified +522 -0
- raylib/version.py +1 -0
- raylib-5.5.0.0.dev3.dist-info/LICENSE +277 -0
- raylib-5.5.0.0.dev3.dist-info/METADATA +265 -0
- raylib-5.5.0.0.dev3.dist-info/RECORD +21 -0
- raylib-5.5.0.0.dev3.dist-info/WHEEL +5 -0
- raylib-5.5.0.0.dev3.dist-info/top_level.txt +2 -0
raylib/__init__.py
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Copyright (c) 2021 Richard Smith and others
|
|
2
|
+
#
|
|
3
|
+
# This program and the accompanying materials are made available under the
|
|
4
|
+
# terms of the Eclipse Public License 2.0 which is available at
|
|
5
|
+
# http://www.eclipse.org/legal/epl-2.0.
|
|
6
|
+
#
|
|
7
|
+
# This Source Code may also be made available under the following Secondary
|
|
8
|
+
# licenses when the conditions for such availability set forth in the Eclipse
|
|
9
|
+
# Public License, v. 2.0 are satisfied: GNU General Public License, version 2
|
|
10
|
+
# with the GNU Classpath Exception which is
|
|
11
|
+
# available at https://www.gnu.org/software/classpath/license.html.
|
|
12
|
+
#
|
|
13
|
+
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
|
|
15
|
+
from ._raylib_cffi import ffi, lib as rl
|
|
16
|
+
from raylib._raylib_cffi.lib import *
|
|
17
|
+
from raylib.colors import *
|
|
18
|
+
from raylib.defines import *
|
|
19
|
+
import cffi
|
|
20
|
+
import sys
|
|
21
|
+
from .version import __version__
|
|
22
|
+
|
|
23
|
+
print("RAYLIB STATIC "+__version__+" LOADED", file=sys.stderr)
|
|
24
|
+
|