17 lines
353 B
C#
17 lines
353 B
C#
using Godot;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Godot.Collections;
|
|
using System.Drawing;
|
|
|
|
namespace Rokojori
|
|
{
|
|
[Tool]
|
|
[GlobalClass,Icon("res://addons/rokojori_action_library/Icons/Collectable.svg")]
|
|
public partial class CollectableData:SelectorFlag
|
|
{
|
|
[Export]
|
|
public CollectableType collectableType;
|
|
}
|
|
}
|