4cdbd64fd2
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.
18 lines
367 B
C#
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);
|
|
}
|
|
} |