Added Type stubbing

This commit is contained in:
Samuele Lorefice
2025-01-22 17:56:49 +01:00
parent 2d6159e331
commit 9a949dbeab
112 changed files with 610 additions and 313 deletions

View File

@@ -59,7 +59,7 @@ namespace BlendFile.DNA {
public Stereo3dFormat ptr_stereo3d_format;
public ListBase drawcalls;
public object ptr_cursor_keymap_status;
public uint64_t eventstate_prev_press_time_ms;
public ulong eventstate_prev_press_time_ms;
public wmWindow(
wmWindow ptr_next,
wmWindow ptr_prev,
@@ -106,7 +106,7 @@ namespace BlendFile.DNA {
Stereo3dFormat ptr_stereo3d_format,
ListBase drawcalls,
object ptr_cursor_keymap_status,
uint64_t eventstate_prev_press_time_ms) {
ulong eventstate_prev_press_time_ms) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_ghostwin = ptr_ghostwin;