Files
Net.Project.B/Src/Interaction/WorldInteractable.cs
CortexCore 4402ae533b 1
2025-03-03 18:43:55 +08:00

26 lines
642 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using BITKit.WorldNode;
using UnityEngine;
#if UNITY_5_3_OR_NEWER
namespace Net.Project.B.Interaction
{
[Serializable]
public class WorldInteractable : IWorldInteractable,IWorldNode
{
public GameObject gameObject;
public int Id => gameObject.GetInstanceID();
public IWorldInteractable Root => this;
public IWorldInteractionType InteractionType => null;
public object WorldObject
{
get => gameObject;
set => throw new NotImplementedException("Can do that");
}
}
}
#endif