11 lines
168 B
C#
11 lines
168 B
C#
using Godot;
|
|
|
|
public partial class Pickup : RigidBody3D {
|
|
|
|
[Export]
|
|
public int ItemID {get; set;}
|
|
|
|
[Export]
|
|
public int Quantity {get; set;}
|
|
|
|
} |