Skip to content
Snippets Groups Projects
Fact.cs 163 B
Newer Older
  • Learn to ignore specific revisions
  • using UnityEngine;
    
    public class Fact
    {
        public int Id;
        public GameObject Representation;
    
    }
    
    public class PointFact : Fact
    {
        public Vector3 Point;
    }