Figments-of-the-Night/addons/inkgd/editor/import_plugins/ink_resource.gd
Gerard Gascón b99855351d init
2025-04-24 17:23:34 +02:00

16 lines
641 B
GDScript

# ############################################################################ #
# Copyright © 2019-2022 Frédéric Maquin <fred@ephread.com>
# Licensed under the MIT License.
# See LICENSE in the project root for license information.
# ############################################################################ #
extends Resource
# A very simple resource to store the content of a json file, as a string.
class_name InkResource
# ############################################################################ #
# Properties
# ############################################################################ #
@export var json: String = ""