using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class FactObject : MonoBehaviour
{
    //object that can represent arbitrary facts
    //used to access entry in global Fact Collection 
    public int Id;
  
}