16 lines
338 B
Python
16 lines
338 B
Python
from Base.Metadata import export
|
|
|
|
from App.DocumentObject import DocumentObject
|
|
|
|
@export(
|
|
Include="Mod/TechDraw/App/DrawTile.h",
|
|
Namespace="TechDraw",
|
|
)
|
|
class DrawTile(DocumentObject):
|
|
"""
|
|
Feature for adding tiles to leader lines
|
|
|
|
Author: WandererFan (wandererfan@gmail.com)
|
|
License: LGPL-2.1-or-later
|
|
"""
|