QiNet / FluxspaceCore.py
TheGreatUnknown's picture
Upload 4 files
e8b091b verified
raw
history blame contribute delete
275 Bytes
# FluxspaceCore.py
class Fluxspace:
def __init__(self):
self.phase_topology = {}
def trigger(self, symbol):
print(f"Triggered phase topology change with: {symbol}")
self.phase_topology[symbol] = "activated"
return self.phase_topology