示例#1
0
 protected abstract void Tick(ref Rows rows, Span <T> comp1);
示例#2
0
 public static extern IntPtr field(ref Rows rows, UIntPtr size, uint column, uint row);
示例#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));
        }
示例#4
0
 public static extern IntPtr column(ref Rows rows, UIntPtr size, uint column);