File size: 287 Bytes
90ca39a
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
using AIMA.Agent.Environment;
using AIMA.Agent.Object;

namespace AIMA.Agent.Dynamic
{
    public class DynamicEnvironmentState : ObjectWithDynamicAttributesBase, IEnvironmentState
    {
        public override string DescribeType => typeof(IEnvironmentState).Name;
    }
}