1
This commit is contained in:
19
Src/WorldNode/UnityEntityFactoryNode.cs
Normal file
19
Src/WorldNode/UnityEntityFactoryNode.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using BITKit;
|
||||
using BITKit.WorldNode;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Net.Project.B.WorldNode
|
||||
{
|
||||
[Serializable]
|
||||
public struct UnityEntityFactoryNode : IWorldNode
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public object WorldObject { get; set; }
|
||||
public string address;
|
||||
public string Address => address;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user