22 lines
574 B
C#
22 lines
574 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Quadtree;
|
|
using Quadtree.Items;
|
|
using UnityEngine;
|
|
|
|
namespace BITFALL.Industry
|
|
{
|
|
public class UnityNetDevice : UnityBatteryDevice,INetDevice, IItem<UnityNetDevice, Node<UnityNetDevice>>
|
|
{
|
|
[SerializeReference,SubclassSelector] private INetConnectionType connection;
|
|
public INetConnectionType Connection => connection;
|
|
public Node<UnityNetDevice> ParentNode { get; set; }
|
|
public void QuadTree_Root_Initialized(IQuadtreeRoot<UnityNetDevice, Node<UnityNetDevice>> root)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|