24 lines
486 B
C#
24 lines
486 B
C#
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 = [];
|
|
}
|
|
}
|