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

20 lines
412 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using BITKit;
using BITKit.WorldNode;
using UnityEngine;
namespace Net.Project.B.WorldNode
{
[Serializable]
public class UnityEntityFactoryNode : IWorldNode
{
public int Id { get; set; }
public object WorldObject { get; set; }
public string address;
public string Address => address;
}
}