From f38bf0a2b923089b751f6a88cf079b44d70798e9 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Thu, 23 Jan 2025 14:49:29 +0800 Subject: [PATCH] Update pkpy.pyi --- include/typings/pkpy.pyi | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/include/typings/pkpy.pyi b/include/typings/pkpy.pyi index e315dd6d..24fd6c61 100644 --- a/include/typings/pkpy.pyi +++ b/include/typings/pkpy.pyi @@ -7,7 +7,10 @@ class TValue[T]: @property def value(self) -> T: ... -# TValue_int = TValue[int] -# TValue_float = TValue[float] -# TValue_vec2i = TValue[vec2i] -# TValue_vec2 = TValue[vec2] +TValue_int = TValue[int] +TValue_float = TValue[float] +TValue_vec2i = TValue[vec2i] +TValue_vec2 = TValue[vec2] + +def memory_usage() -> str: + """Return a summary of the memory usage."""