Skip to content

Commit

Permalink
Add back DME .pyc
Browse files Browse the repository at this point in the history
  • Loading branch information
tanjo3 committed Mar 5, 2024
1 parent 7ed0809 commit faf3c17
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 2 deletions.
3 changes: 1 addition & 2 deletions TWWClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
import traceback
from typing import Any

import dolphin_memory_engine

import Utils
from CommonClient import ClientCommandProcessor, CommonContext, get_base_parser, gui_enabled, logger, server_loop
from NetUtils import ClientStatus, NetworkItem

from .inc.packages import dolphin_memory_engine
from .Items import ITEM_TABLE, LOOKUP_ID_TO_NAME
from .Locations import LOCATION_TABLE, TWWLocationType

Expand Down
21 changes: 21 additions & 0 deletions inc/packages/dolphin_memory_engine/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2017 aldelaro5

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
37 changes: 37 additions & 0 deletions inc/packages/dolphin_memory_engine/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
from dolphin_memory_engine._dolphin_memory_engine import (
MemWatch,
assert_hooked,
follow_pointers,
hook,
is_hooked,
read_byte,
read_bytes,
read_double,
read_float,
read_word,
un_hook,
write_byte,
write_bytes,
write_double,
write_float,
write_word,
)

__all__ = [
"MemWatch",
"assert_hooked",
"follow_pointers",
"hook",
"un_hook",
"is_hooked",
"read_byte",
"read_bytes",
"read_double",
"read_float",
"read_word",
"write_byte",
"write_bytes",
"write_double",
"write_float",
"write_word",
]
4 changes: 4 additions & 0 deletions inc/packages/dolphin_memory_engine/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# file generated by setuptools_scm
# don't change, don't track in version control
__version__ = version = '1.1.3'
__version_tuple__ = version_tuple = (1, 1, 3)

0 comments on commit faf3c17

Please sign in to comment.