mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-07-03 08:11:17 +00:00
8 lines
210 B
GDScript3
8 lines
210 B
GDScript3
|
|
@icon("res://addons/func_godot/icons/icon_quake_file.svg")
|
||
|
|
class_name QuakeWadFile
|
||
|
|
extends Resource
|
||
|
|
|
||
|
|
@export var textures: Dictionary
|
||
|
|
|
||
|
|
func _init(textures: Dictionary = Dictionary()):
|
||
|
|
self.textures = textures
|