13 lines
334 B
C#
13 lines
334 B
C#
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;
|
|
}
|
|
} |