mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
14 lines
No EOL
262 B
C#
14 lines
No EOL
262 B
C#
using Godot;
|
|
|
|
namespace Cirno.Scripts.Resources.Loot;
|
|
|
|
[GlobalClass]
|
|
[Tool]
|
|
public partial class LootDrop : Resource
|
|
{
|
|
[Export]
|
|
public LootItem Item { get; set; }
|
|
|
|
[Export(PropertyHint.None, "suffix:%")]
|
|
public float Chance { get; set; }
|
|
} |