You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Copyright (c) Software Antics. All rights reserved.
// </copyright>
namespace FinalEngine.ECS;
/// <summary>
/// Defines an interface that provides a method to create an <see cref="Entity"/>.
/// </summary>
///
/// <remarks>
/// You should implement this interface in a scenario where an <see cref="Entity"/> must be created and assigned a default collection of components and can be reused. It simply provides a means to simplify the relationship between entities and components.