Files
Net.Like.Xue.Tokyo/Packages-Local/Com.Project.B/Interaction/WorldInteractable.cs

19 lines
420 B
C#
Raw Normal View History

2025-06-24 23:49:13 +08:00
using System;
using System.Collections;
using System.Collections.Generic;
using BITKit.WorldNode;
#if UNITY_5_3_OR_NEWER
using UnityEngine;
namespace Net.Project.B.Interaction
{
[Serializable]
public class WorldInteractable : IWorldInteractable,IWorldNode
{
public bool Enabled { get; set; } = true;
public object WorldObject { get; set; }
public int Id { get; set; }
}
}
#endif