1
This commit is contained in:
13
Unity/Scripts/NetworkItem/NetworkCheckable.cs
Normal file
13
Unity/Scripts/NetworkItem/NetworkCheckable.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using Unity.Netcode;
|
||||
namespace BITKit.Item
|
||||
{
|
||||
public class NetworkCheckable : NetworkBehaviour, ICheckable
|
||||
{
|
||||
public ItemSO so;
|
||||
public string GetDescription() => so.description;
|
||||
public string GetName() => so.itemName;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user