This commit is contained in:
ZtRXR 2024-06-29 11:53:23 +08:00
parent 701bd39d23
commit f6189af86f
5 changed files with 17 additions and 3 deletions

View File

@ -146,7 +146,16 @@
"kind": 2,
"importPath": "src.glpy.tests",
"description": "src.glpy.tests",
"peekOfCode": "def glfw_window(width:int,height:int,title:str)->int:...",
"peekOfCode": "def glfw_window(width:int,height:int,title:str)->int:...\ndef glfw_black_window(width:int,height:int,title:str)->int:...",
"detail": "src.glpy.tests",
"documentation": {}
},
{
"label": "glfw_black_window",
"kind": 2,
"importPath": "src.glpy.tests",
"description": "src.glpy.tests",
"peekOfCode": "def glfw_black_window(width:int,height:int,title:str)->int:...",
"detail": "src.glpy.tests",
"documentation": {}
}

BIN
src/glew32.dll Normal file

Binary file not shown.

Binary file not shown.

View File

@ -1 +1,3 @@
def glfw_window(width:int,height:int,title:str)->int:...
def glfw_window(width:int,height:int,title:str)->int:...
def glfw_black_window(width:int,height:int,title:str)->int:...

View File

@ -1,5 +1,8 @@
from pydoc import doc
import glpy as gl
print(gl.tests.glfw_black_window(500,500,"Hello world"))
# print(gl.tests.glfw_window(width=500,height=500,title="I'm Zengtudor"))
print(gl.tests.glfw_window(width=500,height=500,title="I'm Zengtudor"))