Skip to content
Snippets Groups Projects
Select Git revision
  • 244f1d34216e3e90cd77ec1d5c6110a6cf1bed7f
  • main default protected
2 results

Topologie.cs

Blame
  • Topologie.cs 318 B
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    
    public abstract class Topologie
    {
        
        public Topologie() {}
    
        public abstract GameObject getGameObject();
    
        public abstract Observation detectEnv(Agent current);
    
        public abstract Vector3 validPosition();
    
    }