For my project, I don't have anything to use the generic parameter of ISystem<T>. Would it be possible for there to be a non generic version?
For context, I am using DefaultEcs to simulate the result of a puzzle solution for a puzzle game that will run for a few minutes at most. It will run in in fixed time so there is no need for the generic parameter to be a time delta value like in many of the examples. The only external influence is the tick update and the initial seeding of the player's solution at the start.
For my project, I don't have anything to use the generic parameter of
ISystem<T>. Would it be possible for there to be a non generic version?For context, I am using
DefaultEcsto simulate the result of a puzzle solution for a puzzle game that will run for a few minutes at most. It will run in in fixed time so there is no need for the generic parameter to be a time delta value like in many of the examples. The only external influence is the tick update and the initial seeding of the player's solution at the start.