mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
16 lines
347 B
C#
16 lines
347 B
C#
using System;
|
|
|
|
namespace MonoGame.Extended.Entities
|
|
{
|
|
public class DefaultDependencyResolver : DependencyResolver
|
|
{
|
|
public DefaultDependencyResolver()
|
|
{
|
|
}
|
|
|
|
public override object Resolve(Type type, params object[] args)
|
|
{
|
|
return Activator.CreateInstance(type, args);
|
|
}
|
|
}
|
|
} |