using System.Collections.Generic;
using System.Linq;
namespace Awperative;
///
/// Base class for all Awperative entities, manages components as a requirement because that is the job of all entities.
///
public abstract partial class Docker
{
internal Scene DockerScene;
public List Behaviors => _behaviors.ToList();
}