Skip to content
Snippets Groups Projects
Select Git revision
  • 8869eac3020a6a2551ae79302859eb7826d81029
  • main default
  • master
  • tempAndrToMaster
4 results

Fact.cs

Blame
  • FactObject.cs 251 B
    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;
      
    }