Skip to content

Commit 6f168bd

Browse files
committed
Fix linting and remove outdated docs
1 parent ad90c6a commit 6f168bd

File tree

11 files changed

+7
-257
lines changed

11 files changed

+7
-257
lines changed

docs/api/mod_loader.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

docs/change_log.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

docs/examples/basic_mod.md

Lines changed: 0 additions & 50 deletions
This file was deleted.

docs/index.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

docs/modding/getting_started.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

docs/modding/quick_reference.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

docs/setup.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

docs/writing_libraries.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

docs/writing_mods.md

Lines changed: 0 additions & 81 deletions
This file was deleted.

nmspy/data/types.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,15 +398,19 @@ def GetDominantHand(self, this: "ctypes._Pointer[cGcPlayer]") -> ctypes.c_int64:
398398

399399

400400
class cGcPlayerState(Structure):
401-
@function_hook("48 89 5C 24 ? 48 89 6C 24 ? 48 89 74 24 ? 57 48 83 EC ? 44 8B 81 ? ? ? ? 48 8D 2D")
401+
@function_hook(
402+
"48 89 5C 24 ? 48 89 6C 24 ? 48 89 74 24 ? 57 48 83 EC ? 44 8B 81 ? ? ? ? 48 8D 2D"
403+
)
402404
def AwardUnits(
403405
self,
404406
this: "ctypes._Pointer[cGcPlayerState]",
405407
liChange: ctypes.c_int32,
406408
) -> ctypes.c_uint64:
407409
pass
408410

409-
@function_hook("48 89 5C 24 ? 48 89 6C 24 ? 48 89 74 24 ? 57 48 83 EC ? 44 8B 81 ? ? ? ? 48 8D 35")
411+
@function_hook(
412+
"48 89 5C 24 ? 48 89 6C 24 ? 48 89 74 24 ? 57 48 83 EC ? 44 8B 81 ? ? ? ? 48 8D 35"
413+
)
410414
def AwardNanites(
411415
self,
412416
this: "ctypes._Pointer[cGcPlayerState]",

0 commit comments

Comments
 (0)