raylib 5.5.0.2__pp311-pypy311_pp73-win_amd64.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/py.typed ADDED
File without changes
raylib/SDL2.dll ADDED
Binary file
raylib/__init__.py ADDED
@@ -0,0 +1,30 @@
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
+ import sys
16
+ try:
17
+ from ._raylib_cffi import ffi, lib as rl
18
+ except ModuleNotFoundError:
19
+ print("\n*** ERROR LOADING NATIVE CODE ***\n")
20
+ print("See https://github.com/electronstudio/raylib-python-cffi/issues/142\n", file=sys.stderr)
21
+ print("Your Python is: "+str(sys.implementation)+"\n", file=sys.stderr)
22
+ raise
23
+ from raylib._raylib_cffi.lib import *
24
+ from raylib.colors import *
25
+ from raylib.defines import *
26
+ import cffi
27
+ from .version import __version__
28
+
29
+ print("RAYLIB STATIC "+__version__+" LOADED", file=sys.stderr)
30
+