Files
PolyphiaGame/Scripts/Game/Pickup.cs
T
2025-05-12 18:07:43 -07:00

11 lines
168 B
C#

using Godot;
public partial class Pickup : RigidBody3D {
[Export]
public int ItemID {get; set;}
[Export]
public int Quantity {get; set;}
}