Metadata-Version: 2.4
Name: simple2d_3d
Version: 0.2.2
Summary: A lightweight, hardware-accelerated 2D-3D layout and engine.
Author: ProdeeptoSundar Roy
Project-URL: Homepage, https://github.com/rtumpa099-gif/Simple2D_3D
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pysdl2
Requires-Dist: pysdl2-dll; sys_platform != "android"
Dynamic: license-file

# Simple2D_3D
A lightweight, hardware-accelerated 2D-3D layout and engine. Here is an example of how easy it is to open a window with this library.

# Simple_Window

import simple2d_3d as s
width , height = ctypes.c_int() , ctypes.c_int()
window , renderer = s.init(b"Simple_Window", width, height)
s.clean_up(window, renderer)
