mirror of
https://github.com/Steffo99/lihzahrd.git
synced 2025-03-14 04:33:41 +00:00
Combined Mannequin and Hat Tack into ClothingDisplay class. Plate and weapon rack into single item display. Perhaps they'd be better as tile entities?
8 lines
238 B
Python
Executable file
8 lines
238 B
Python
Executable file
class Pylon:
|
|
"""Data pertaining to a Pylon (https://terraria.gamepedia.com/Pylons)"""
|
|
|
|
def __init__(self, pylon: bool = True):
|
|
self.pylon: bool = pylon
|
|
|
|
def __repr__(self):
|
|
return f"pylon={self.pylon}"
|