xiandie/addons/project-statistics/loaders/extensions/MarkdownStatistics.gd

13 lines
254 B
GDScript3
Raw Normal View History

2024-12-23 01:30:31 +00:00
extends "../FileStatistics.gd"
const ICON: Texture = preload("../../icons/markdown.svg")
func _get_extension() -> String:
return "Markdown"
func _get_color() -> Color:
return Color.GHOST_WHITE
func _get_icon() -> String:
return ICON.resource_path