miepzerino
2025-04-01 f5e15fa93d84acbae6a26b86fddf20add38bb485
1
2
3
4
5
6
7
8
9
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
 
public class Dropable : MonoBehaviour
{
    public bool isDropable = true;
    public Item dropable;
}