DOTS - System

PHOTO EMBED

Wed Jun 21 2023 07:23:15 GMT+0000 (Coordinated Universal Time)

Saved by @WindyFeng #csharp

using Unity.Collections;
using Unity.Entities;

public partial struct NameSystem : ISystem
{
    public void OnCreate(ref SystemState state)
    {
        // throw new System.NotImplementedException();
    }

    public void OnUpdate(ref SystemState state)
    {
        // throw new System.NotImplementedException();
    }

    public void OnDestroy(ref SystemState state)
    {
        // throw new System.NotImplementedException();
    }


}
content_copyCOPY