mirror of
https://github.com/DCFApixels/DragonECS-Unity.git
synced 2025-09-18 01:54:35 +08:00
19 lines
457 B
Plaintext
19 lines
457 B
Plaintext
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using DCFApixels.DragonECS;
|
|
|
|
namespace #NAMESPACE#
|
|
{
|
|
public class #SCRIPTNAME# : IEcsRunSystem, IEcsInject<EcsDefaultWrold>
|
|
{
|
|
private EcsDefaultWrold _world;
|
|
public void Inject(EcsDefaultWrold obj) => _world = obj;
|
|
|
|
public void Run(EcsPipeline pipeline)
|
|
{
|
|
// will be called on each EcsPipeline.Run() call
|
|
}
|
|
}
|
|
}
|