miepzerino
2023-12-27 60aa8e85d058fccb1fa5e3952975d03d99778c6a
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 GameObject dropable;
}