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