using System.Collections; using System.Collections.Generic; using UnityEngine; using System; [Serializable] public struct Metadata : IEquatable { public bool IsOwnedByNPC; public bool Equals(Metadata other) { return IsOwnedByNPC.Equals(other.IsOwnedByNPC); } }