rj-action-library/Runtime/Interactions/Collecting/CollectableCollection.cs

24 lines
486 B
C#
Raw Permalink Normal View History

2025-12-10 14:17:07 +00:00
using Godot;
using System.Collections;
using System.Collections.Generic;
using Godot.Collections;
using System.Drawing;
using System;
namespace Rokojori
{
[Tool]
[GlobalClass,Icon("res://addons/rokojori_action_library/Icons/Collectable.svg")]
public partial class CollectableCollection:Resource
{
[Export]
public CollectableType collectableType;
[Export]
public CollectableData[] collection = [];
[Export]
public ISOTimeStamp[] timeStamps = [];
}
}