Mirror of Svelto.ECS because we're a fan of it
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IMonoBehaviourFactory.cs 210B

1234567891011121314
  1. #if UNITY_5_3_OR_NEWER || UNITY_5
  2. using System;
  3. using UnityEngine;
  4. namespace Svelto.Factories
  5. {
  6. public interface IMonoBehaviourFactory
  7. {
  8. M Build<M>(Func<M> constructor) where M:MonoBehaviour;
  9. }
  10. }
  11. #endif