1
Fork 0
mirror of https://github.com/Steffo99/lihzahrd.git synced 2025-03-14 04:33:41 +00:00
lihzahrd/lihzahrd/tileentities/pylon.py
Dale Floer dfaf41df91 Added pylon, plate + hat/weapon rack parsing.
Combined Mannequin and Hat Tack into ClothingDisplay class.
Plate and weapon rack into single item display. Perhaps they'd be better
as tile entities?
2020-06-01 21:22:52 -07:00

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}"