Files
FueraDeEscala/Assets/Game Kit Controller/Scripts/Others/FloatingObjectSocket.cs

13 lines
259 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FloatingObjectSocket : MonoBehaviour
{
public FloatingObject mainFloatingObject;
public FloatingObject getFloatingObject ()
{
return mainFloatingObject;
}
}