Firstborn/Assets/Scripts/Metadata.cs
Schaken-Mods 4cdbd64fd2 Optimizes and fixes
Added ownership to all items, added perk points for certain things, added a male outfit, going thru and removing all BLEND files and replacing with FBX, fixed a few errors when loading between scenes, moved Wothabs Entry door a little so its not at the border of a cell, Joe Biden sucks.
2023-05-11 00:27:44 -05:00

18 lines
367 B
C#

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