code stringlengths 114 1.05M | path stringlengths 3 312 | quality_prob float64 0.5 0.99 | learning_prob float64 0.2 1 | filename stringlengths 3 168 | kind stringclasses 1
value |
|---|---|---|---|---|---|
# Imports
from .bip_coin_base import BipCoinBase
from .bip_coin_conf import *
from .P2PKH import P2PKH
from .eth_addr import EthAddr
from .xrp_addr import XrpAddr
class Bip44Coin(BipCoinBase):
""" Generic class for BIP-044 coins. """
def __init__(self, coin_conf, is_testnet, addr_fct):
... | /retro_bip_utils-1.0.5-py3-none-any.whl/retro_bip_utils/bip44_coins.py | 0.710929 | 0.158044 | bip44_coins.py | pypi |
# Imports
from .bip32_ex import Bip32KeyError
from .bip32_key_ser import Bip32KeySerializer
from .bip44_coins import Bip44BitcoinMainNet
from .wif import WifEncoder
from . import utils
class BipKeyBytes:
""" BIP key bytes class. It allows to get key bytes in different formats. """
... | /retro_bip_utils-1.0.5-py3-none-any.whl/retro_bip_utils/bip_keys.py | 0.893536 | 0.335024 | bip_keys.py | pypi |
# It's not so easy to find this information, some references I used:
# https://github.com/libbitcoin/libbitcoin-system/wiki/Altcoin-Version-Mappings#bip44-altcoin-version-mapping-table
# https://github.com/satoshilabs/slips/blob/master/slip-0132.md
# Imports
from .bip_coin_conf_helper import *
class Bip32Conf:
... | /retro_bip_utils-1.0.5-py3-none-any.whl/retro_bip_utils/bip_coin_conf.py | 0.788949 | 0.267917 | bip_coin_conf.py | pypi |
# Imports
from enum import IntEnum, unique
from .base58_ex import Base58ChecksumError
from . import utils
@unique
class Base58Alphabets(IntEnum):
""" Enumerative for Base58 alphabet. """
BITCOIN = 0,
RIPPLE = 1,
class Base58Const:
""" Class container for Base58 constants. """
... | /retro_bip_utils-1.0.5-py3-none-any.whl/retro_bip_utils/base58.py | 0.932407 | 0.345022 | base58.py | pypi |
# Imports
from . import utils
class CoinNames:
""" Helper class for representing coin names. """
def __init__(self, name, abbr):
""" Construct class.
Args:
name (str): Name
abbr (str): Abbreviation
"""
self.m_name = name
self.m_abbr = abbr
... | /retro_bip_utils-1.0.5-py3-none-any.whl/retro_bip_utils/bip_coin_conf_helper.py | 0.884227 | 0.225353 | bip_coin_conf_helper.py | pypi |
# Imports
from .bip_coin_base import BipCoinBase
from .bip_coin_conf import *
from .P2SH import P2SH
class Bip49Coin(BipCoinBase):
""" Generic class for BIP-049 coins. """
def __init__(self, coin_conf, is_testnet, addr_fct):
""" Construct class.
Args:
coin_conf (class)... | /retro_bip_utils-1.0.5-py3-none-any.whl/retro_bip_utils/bip49_coins.py | 0.82559 | 0.199366 | bip49_coins.py | pypi |
# Imports
from .P2PKH import P2PKH
from .P2SH import P2SH
from .P2WPKH import P2WPKH
from .eth_addr import EthAddr
from .xrp_addr import XrpAddr
class BipCoinBase:
""" Bip coin base class. It's the base class for BipCoin classes (e.g. Bip44Coin, Bip49Coin).
It basically wraps the coin configuration... | /retro_bip_utils-1.0.5-py3-none-any.whl/retro_bip_utils/bip_coin_base.py | 0.766206 | 0.222521 | bip_coin_base.py | pypi |
# Imports
import binascii
import hashlib
import hmac
from bisect import bisect_left
def Sha256(data_bytes):
""" Compute the SHA256 of the specified bytes.
Args:
data_bytes (bytes): Data bytes
Returns:
bytes: Computed SHA256
"""
return hashlib.sha256(data_bytes).digest()
def S... | /retro_bip_utils-1.0.5-py3-none-any.whl/retro_bip_utils/utils.py | 0.932844 | 0.795738 | utils.py | pypi |
# Import
from .bip32_utils import Bip32Utils
class Bip32PathParserConst:
""" Class container for path parser constants. """
# Hardened characters
HARDENED_CHARS = ("'", "p")
# Master character
MASTER_CHAR = "m"
class Bip32PathParser:
""" Path parser class. It parses a BIP-0032 path and... | /retro_bip_utils-1.0.5-py3-none-any.whl/retro_bip_utils/bip32_path.py | 0.814016 | 0.441071 | bip32_path.py | pypi |
# Imports
from .base58 import Base58Decoder, Base58Encoder
from .bip32_ex import Bip32KeyError
class Bip32KeySerConst:
""" Class container for BIP32 key serialize constants. """
# Extended key length
EXTENDED_KEY_LEN = 78
class Bip32KeyDeserializer:
""" BIP32key deserializer class. It deseriali... | /retro_bip_utils-1.0.5-py3-none-any.whl/retro_bip_utils/bip32_key_ser.py | 0.878445 | 0.17259 | bip32_key_ser.py | pypi |
from __future__ import annotations
import io
import math
import construct
import lzokay
from construct import Adapter, GreedyRange
class CompressedLZO(construct.Tunnel):
def __init__(self, subcon, length):
super().__init__(subcon)
self.lib = lzokay
self.length = length
def _decode(s... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/compression.py | 0.680985 | 0.21463 | compression.py | pypi |
from __future__ import annotations
import itertools
import construct
from construct import Const, Construct, FocusedSeq, Optional, Rebuild, len_, stream_tell, this
def PrefixedArrayWithExtra(countfield, extrafield, subcon):
r"""
Prefixes an array with item count (as opposed to prefixed by byte count, see :c... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/construct_extensions/misc.py | 0.871338 | 0.33805 | misc.py | pypi |
from __future__ import annotations
from typing import TYPE_CHECKING
from retro_data_structures.conversion.errors import UnsupportedSourceGame, UnsupportedTargetGame
from retro_data_structures.game_check import Game
if TYPE_CHECKING:
from retro_data_structures.conversion.asset_converter import AssetConverter, Ass... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/conversion/cskr.py | 0.706494 | 0.219505 | cskr.py | pypi |
from __future__ import annotations
from typing import TYPE_CHECKING
from retro_data_structures.conversion.errors import UnsupportedSourceGame, UnsupportedTargetGame
from retro_data_structures.game_check import Game
if TYPE_CHECKING:
from retro_data_structures.conversion.asset_converter import AssetConverter, Ass... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/conversion/evnt.py | 0.736021 | 0.259855 | evnt.py | pypi |
from __future__ import annotations
import dataclasses
import io
import typing
from abc import ABC
if typing.TYPE_CHECKING:
from retro_data_structures.asset_manager import AssetManager
from retro_data_structures.base_resource import AssetId, Dependency
from retro_data_structures.game_check import Game
Sel... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/base_property.py | 0.823577 | 0.242385 | base_property.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class ProjectileAttackBehaviorData(BaseProperty):
attack_range_squared: float = dataclasses.field(default=0.0)
use_... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/ProjectileAttackBehaviorData.py | 0.604516 | 0.263691 | ProjectileAttackBehaviorData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_id
@dataclasses.dataclass()
class IslandAreaStruct(Base... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/IslandAreaStruct.py | 0.601125 | 0.262931 | IslandAreaStruct.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class PlayerPeriodicAdditiveAnimationData(BaseProperty):
random_delay_minimum: float = dataclasses.field(default=3.0)
... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/PlayerPeriodicAdditiveAnimationData.py | 0.694613 | 0.293003 | PlayerPeriodicAdditiveAnimationData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_id
@dataclasses.dataclass()
class PlayerMultiKillReward... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/PlayerMultiKillRewardSoundData.py | 0.598312 | 0.227116 | PlayerMultiKillRewardSoundData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.UnknownStruct55 import UnknownStruct55
@dataclasses.dataclass()
class UnknownStruct192(... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct192.py | 0.553867 | 0.303164 | UnknownStruct192.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
from retro_data_structures.properties.dkc_returns.archetypes.DamageInfo import DamageInfo
from... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct208.py | 0.557725 | 0.236351 | UnknownStruct208.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.MaterialType import MaterialType
from retro_data_structures.properties.dkc_returns.core.A... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/PeanutMaterialEffects.py | 0.641198 | 0.24416 | PeanutMaterialEffects.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.Spline import Spline
@dataclasses.dataclass()
class ScaleSplines(BaseProperty):
x_scale: ... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/ScaleSplines.py | 0.632276 | 0.31488 | ScaleSplines.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class VolcanoBossBodyPartStructC(BaseProperty):
unknown_0x64543b0c: int = dataclasses.field(default=0)
unknown_0x1e... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/VolcanoBossBodyPartStructC.py | 0.562657 | 0.263209 | VolcanoBossBodyPartStructC.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.DebrisPropertiesOrientationEnum import DebrisPropertiesOrientationEnum
from retro_data_st... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/PeanutProperties.py | 0.601477 | 0.174903 | PeanutProperties.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
from retro_data_structures.properties.dkc_returns.archetypes.LightParameters import LightParam... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/ActorParameters.py | 0.637369 | 0.308946 | ActorParameters.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.MoleTrainManagerStructA import MoleTrainManagerStructA
@dataclasses.dataclass()
class U... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct237.py | 0.528533 | 0.282598 | UnknownStruct237.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_i... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/PlayerOffscreenIndicatorTextData.py | 0.679179 | 0.230931 | PlayerOffscreenIndicatorTextData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.UnknownStruct26 import UnknownStruct26
from retro_data_structures.properties.dkc_returns.... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct35.py | 0.573559 | 0.194425 | UnknownStruct35.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class UnknownStruct155(BaseProperty):
unknown_0xac6cbf9d: float = dataclasses.field(default=0.0)
start_duration: fl... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct155.py | 0.620507 | 0.264376 | UnknownStruct155.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.UnknownStruct7 import UnknownStruct7
@dataclasses.dataclass()
class UnknownStruct8(Base... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct8.py | 0.628635 | 0.321487 | UnknownStruct8.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_id
@dataclasses.dataclass()
class UnknownStruct194(Base... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct194.py | 0.618665 | 0.240507 | UnknownStruct194.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_i... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/SwingLineBehaviorData.py | 0.613584 | 0.248899 | SwingLineBehaviorData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_id
@dataclasses.dataclass()
class GenericCreatureStruct... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/GenericCreatureStructC.py | 0.643889 | 0.262245 | GenericCreatureStructC.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.GenericCreatureStructE import GenericCreatureStructE
@dataclasses.dataclass()
class Ani... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/Animations.py | 0.483648 | 0.263777 | Animations.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
from retro_data_structures.properties.dkc_returns.core.Spline import Spline
@dataclasses.dat... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct65.py | 0.630116 | 0.267268 | UnknownStruct65.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.UnknownStruct272 import UnknownStruct272
@dataclasses.dataclass()
class TrainTrackManag... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/TrainTrackManagerStructB.py | 0.567218 | 0.305056 | TrainTrackManagerStructB.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class OneShotBehaviorData(BaseProperty):
initial_delay_time: float = dataclasses.field(default=1.0)
repeat: bool = ... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/OneShotBehaviorData.py | 0.607314 | 0.294367 | OneShotBehaviorData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.JungleBossStructC import JungleBossStructC
@dataclasses.dataclass()
class UnknownStruct... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct205.py | 0.558207 | 0.303609 | UnknownStruct205.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
@dataclasses.dataclass()
class VolcanoBossBodyPartStructD(BaseProperty):
unknown_0x0f099... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/VolcanoBossBodyPartStructD.py | 0.568416 | 0.282196 | VolcanoBossBodyPartStructD.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.UnknownStruct26 import UnknownStruct26
from retro_data_structures.properties.dkc_returns.... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct157.py | 0.59514 | 0.227802 | UnknownStruct157.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
@dataclasses.dataclass()
class GenericCreatureStructD(BaseProperty):
message: enums.Mess... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/GenericCreatureStructD.py | 0.637144 | 0.274484 | GenericCreatureStructD.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class UnknownStruct49(BaseProperty):
speed: float = dataclasses.field(default=9.0)
acceleration: float = dataclasse... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct49.py | 0.723212 | 0.327319 | UnknownStruct49.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class TrainTrackManagerStructA(BaseProperty):
weight: float = dataclasses.field(default=0.0)
@classmethod
def ... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/TrainTrackManagerStructA.py | 0.645902 | 0.310374 | TrainTrackManagerStructA.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.DamageEffectData import DamageEffectData
from retro_data_structures.properties.dkc_return... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct187.py | 0.623606 | 0.246431 | UnknownStruct187.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_id
from retro_data_structures.properties.dkc_returns.core... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/RagDollData.py | 0.583559 | 0.355579 | RagDollData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class PlayerTireInteractionData(BaseProperty):
pre_tire_jump_buffer: float = dataclasses.field(default=0.10000000149011... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/PlayerTireInteractionData.py | 0.633977 | 0.371878 | PlayerTireInteractionData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_id
@dataclasses.dataclass()
class PlayerBasicMovementDa... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/PlayerBasicMovementData.py | 0.646125 | 0.238772 | PlayerBasicMovementData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.RevolutionControl import RevolutionControl
@dataclasses.dataclass()
class MiscControls(... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/MiscControls.py | 0.477311 | 0.30905 | MiscControls.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class CameraManagerData(BaseProperty):
auto_on: bool = dataclasses.field(default=False)
@classmethod
def game(... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/CameraManagerData.py | 0.639286 | 0.323153 | CameraManagerData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class PlayerBopAnimThresholds(BaseProperty):
animation_count: int = dataclasses.field(default=0)
@classmethod
... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/PlayerBopAnimThresholds.py | 0.633977 | 0.297636 | PlayerBopAnimThresholds.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class UnknownStruct279(BaseProperty):
unknown_0x8a58a7f8: int = dataclasses.field(default=1)
unknown_0x6f51c96b: fl... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct279.py | 0.625324 | 0.274938 | UnknownStruct279.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.MaterialSoundPair import MaterialSoundPair
from retro_data_structures.properties.dkc_retu... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/KongSlideData.py | 0.670177 | 0.201302 | KongSlideData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.UnknownStruct27 import UnknownStruct27
from retro_data_structures.properties.dkc_returns.... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct169.py | 0.492676 | 0.180612 | UnknownStruct169.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class UnknownStruct16(BaseProperty):
max_delay: float = dataclasses.field(default=0.0)
delay: float = dataclasses.f... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct16.py | 0.638159 | 0.300271 | UnknownStruct16.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class UnknownStruct233(BaseProperty):
unknown: float = dataclasses.field(default=1.0)
bomb_locator: str = dataclass... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct233.py | 0.608594 | 0.296349 | UnknownStruct233.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
@dataclasses.dataclass()
class TidalWaveData(BaseProperty):
adjust_each_frame: bool = da... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/TidalWaveData.py | 0.626696 | 0.358718 | TidalWaveData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class SuspensionBridgeStruct(BaseProperty):
player: bool = dataclasses.field(default=True)
ai: bool = dataclasses.f... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/SuspensionBridgeStruct.py | 0.601359 | 0.315354 | SuspensionBridgeStruct.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class UnknownStruct61(BaseProperty):
number_of_bombs: int = dataclasses.field(default=6)
horizontal_spread: float =... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct61.py | 0.613121 | 0.275388 | UnknownStruct61.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.Spline import Spline
@dataclasses.dataclass()
class UnknownStruct298(BaseProperty):
scale... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct298.py | 0.637595 | 0.265214 | UnknownStruct298.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class UnknownStruct273(BaseProperty):
unknown_0x0eafc768: int = dataclasses.field(default=1)
unknown_0x03223140: in... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct273.py | 0.614163 | 0.295973 | UnknownStruct273.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.DamageInfo import DamageInfo
@dataclasses.dataclass()
class UnknownStruct244(BaseProper... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct244.py | 0.615088 | 0.278978 | UnknownStruct244.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.Spline import Spline
@dataclasses.dataclass()
class UnknownStruct198(BaseProperty):
x_mot... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct198.py | 0.658418 | 0.304242 | UnknownStruct198.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.MultiModelActorStruct import MultiModelActorStruct
@dataclasses.dataclass()
class Multi... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/MultiModelInformation.py | 0.515864 | 0.18838 | MultiModelInformation.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
from retro_data_structures.properties.dkc_returns.archetypes.UnknownStruct14 import UnknownStr... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct71.py | 0.574514 | 0.265547 | UnknownStruct71.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class SquawkProxyData(BaseProperty):
auto_player_detection_far_radius: float = dataclasses.field(default=0.0)
auto_... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/SquawkProxyData.py | 0.660501 | 0.387198 | SquawkProxyData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_id
@dataclasses.dataclass()
class MultiModelActorStruct... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/MultiModelActorStruct.py | 0.640186 | 0.23579 | MultiModelActorStruct.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_id
@dataclasses.dataclass()
class UnknownStruct19(BaseP... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct19.py | 0.584627 | 0.2683 | UnknownStruct19.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.Spline import Spline
@dataclasses.dataclass()
class OffsetInterpolant(BaseProperty):
x_of... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/OffsetInterpolant.py | 0.670177 | 0.323567 | OffsetInterpolant.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_id
@dataclasses.dataclass()
class UnknownStruct7(BasePr... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct7.py | 0.579638 | 0.254092 | UnknownStruct7.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
from retro_data_structures.properties.dkc_returns.archetypes.LocomotionContextEnum import Loco... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/AnimGridModifierData.py | 0.632049 | 0.237013 | AnimGridModifierData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
@dataclasses.dataclass()
class UnknownStruct197(BaseProperty):
physics_target_type: enum... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct197.py | 0.679179 | 0.313834 | UnknownStruct197.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.UnknownStruct27 import UnknownStruct27
from retro_data_structures.properties.dkc_returns.... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct177.py | 0.570212 | 0.183703 | UnknownStruct177.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class UnknownStruct92(BaseProperty):
unknown: bool = dataclasses.field(default=True)
auto_start_light: bool = datac... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct92.py | 0.651909 | 0.322526 | UnknownStruct92.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.MineCartMaterialSounds import MineCartMaterialSounds
from retro_data_structures.propertie... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/MineCartData.py | 0.744192 | 0.202148 | MineCartData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.UnknownStruct230 import UnknownStruct230
@dataclasses.dataclass()
class UnknownStruct23... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct231.py | 0.599602 | 0.23814 | UnknownStruct231.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
@dataclasses.dataclass()
class DamageInfo(BaseProperty):
di_damage_type: enums.DI_Damage... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/DamageInfo.py | 0.644337 | 0.246012 | DamageInfo.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
from retro_data_structures.properties.dkc_returns.archetypes.InterpolationMethod import Interp... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/OrientationInterpolationMethod.py | 0.680772 | 0.305238 | OrientationInterpolationMethod.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_id
@dataclasses.dataclass()
class UnknownStruct292(Base... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct292.py | 0.59843 | 0.22531 | UnknownStruct292.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_id
@dataclasses.dataclass()
class UnknownStruct115(Base... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct115.py | 0.612773 | 0.218815 | UnknownStruct115.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
from retro_data_structures.properties.dkc_returns.archetypes.Convergence import Convergence
fr... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/PathPosition.py | 0.648911 | 0.240953 | PathPosition.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.VolcanoBossBodyPartStructA import VolcanoBossBodyPartStructA
@dataclasses.dataclass()
c... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/JungleBossStructD.py | 0.581065 | 0.317175 | JungleBossStructD.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.DamageVulnerability import DamageVulnerability
from retro_data_structures.properties.dkc_... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/RambiCrateData.py | 0.649023 | 0.263392 | RambiCrateData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_id
@dataclasses.dataclass()
class UnknownStruct242(Base... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct242.py | 0.596316 | 0.276324 | UnknownStruct242.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class JungleBossStructC(BaseProperty):
unknown_0xcb349144: int = dataclasses.field(default=3)
spawn_delay_time: flo... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/JungleBossStructC.py | 0.601242 | 0.291141 | JungleBossStructC.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class UnknownStruct116(BaseProperty):
unknown: float = dataclasses.field(default=0.0)
@classmethod
def game(cl... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct116.py | 0.64713 | 0.288284 | UnknownStruct116.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class PlayerSlaveData(BaseProperty):
disable_grab_detach_duration: float = dataclasses.field(default=1.0)
grab_deta... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/PlayerSlaveData.py | 0.591723 | 0.265059 | PlayerSlaveData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.UnknownStruct27 import UnknownStruct27
from retro_data_structures.properties.dkc_returns.... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct180.py | 0.630799 | 0.16807 | UnknownStruct180.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.LayerToggle import LayerToggle
@dataclasses.dataclass()
class UnknownStruct24(BasePrope... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct24.py | 0.519278 | 0.314958 | UnknownStruct24.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.TrainTrackManagerStructB import TrainTrackManagerStructB
@dataclasses.dataclass()
class... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct275.py | 0.584983 | 0.187988 | UnknownStruct275.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
@dataclasses.dataclass()
class StunnedByGroundPoundBehaviorData(BaseProperty):
ground_pound_distance_vertical_multiplier: float = dataclasses.fi... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/StunnedByGroundPoundBehaviorData.py | 0.592313 | 0.246874 | StunnedByGroundPoundBehaviorData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.UnknownStruct29 import UnknownStruct29
from retro_data_structures.properties.dkc_returns.... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct31.py | 0.555797 | 0.154058 | UnknownStruct31.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
@dataclasses.dataclass()
class UnknownStruct246(BaseProperty):
priority: enums.Priority ... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct246.py | 0.689096 | 0.282724 | UnknownStruct246.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.InterpolationMethod import InterpolationMethod
from retro_data_structures.properties.dkc_... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/MotionInterpolationMethod.py | 0.639736 | 0.264875 | MotionInterpolationMethod.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
from retro_data_structures.properties.dkc_returns.archetypes.TouchAttackDirectionEnum import T... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/TouchAttackBehaviorData.py | 0.631026 | 0.248728 | TouchAttackBehaviorData.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.AssetId import AssetId, default_asset_id
from retro_data_structures.properties.dkc_returns.core... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct297.py | 0.636579 | 0.188193 | UnknownStruct297.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
from retro_data_structures.properties.dkc_returns.archetypes.PathDeterminationMethodType impor... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/PathDetermination.py | 0.61231 | 0.305354 | PathDetermination.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.archetypes.SpindlePositionInterpolant import SpindlePositionInterpolant
@dataclasses.dataclass()
c... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/UnknownStruct74.py | 0.624408 | 0.290078 | UnknownStruct74.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
import retro_data_structures.enums.dkc_returns as enums
@dataclasses.dataclass()
class BeatUpHandlerStruct(BaseProperty):
item: enums.PlayerItem... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/BeatUpHandlerStruct.py | 0.632389 | 0.296311 | BeatUpHandlerStruct.py | pypi |
import dataclasses
import struct
import typing
from retro_data_structures.game_check import Game
from retro_data_structures.properties.base_property import BaseProperty
from retro_data_structures.properties.dkc_returns.core.Spline import Spline
@dataclasses.dataclass()
class TranslationSplines(BaseProperty):
x_t... | /retro_data_structures-0.23.0-py3-none-any.whl/retro_data_structures/properties/dkc_returns/archetypes/TranslationSplines.py | 0.651355 | 0.322793 | TranslationSplines.py | pypi |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.