piermesh/src/Sponge/Protocols/__init__.py

11 lines
262 B
Python
Raw Normal View History

2024-11-23 03:34:39 +00:00
from . import hopper, map, cryptography, catch, bubble, daisy
classDict = {
"bubble": bubble.Bubble,
"catch": catch.Catch,
"cryptography": cryptography.CryptographyFilter,
"daisy": daisy.Daisy,
"hopper": hopper.Hopper,
"map": map.Map,
}