Esempio n. 1
0
 protected abstract void Tick(ref Rows rows, Span <T> comp1);
Esempio n. 2
0
 public static extern IntPtr field(ref Rows rows, UIntPtr size, uint column, uint row);
Esempio n. 3
0
        unsafe void ISystem.Tick(ref Rows rows)
        {
            var set1 = (T *)_ecs.column(ref rows, Heap.SizeOf <T>(), 1);

            Tick(ref rows, new Span <T>(set1, (int)rows.count));
        }
Esempio n. 4
0
 public static extern IntPtr column(ref Rows rows, UIntPtr size, uint column);