newlon/scripts/resources/PlantReward.cs
2025-07-20 22:11:23 +05:00

15 lines
255 B
C#

using Godot;
using Newlon;
[GlobalClass]
[Tool]
public partial class PlantReward : RewardResource
{
[Export]
public PlantResource Plant { get; private set; }
public override PackedScene GetPreview()
{
return Plant.Scene;
}
}