public static void Burst_Unity__Entities__SystemBaseRegistry_CallForwardingFunction(IntPtr p)
        {
            SystemState *v0 = (SystemState *)((byte *)p + 0);
            var          v1 = default(int);

            SystemBaseRegistry.CallForwardingFunction(v0, v1);
        }
        public Type GetSystemType()
        {
            if (!Valid)
            {
                return(null);
            }

            return(Managed != null?Managed.GetType() : SystemBaseRegistry.GetStructType(StatePointer->UnmanagedMetaIndex));
        }
Example #3
0
 public Type GetSystemType()
 {
     if (Managed != null)
     {
         return(Managed.GetType());
     }
     else
     {
         return(SystemBaseRegistry.GetStructType(StatePointer->UnmanagedMetaIndex));
     }
 }
        public static void Burst_Unity__Entities__SystemBaseRegistry_GetSystemTypeMetaIndex(IntPtr p)
        {
            var v0 = default(long);

            SystemBaseRegistry.GetSystemTypeMetaIndex(v0);
        }
        public static void Burst_Unity__Entities__SystemBaseRegistry_GetDebugName(IntPtr p)
        {
            var v0 = default(int);

            SystemBaseRegistry.GetDebugName(v0);
        }
        public static void Burst_Unity__Entities__SystemBaseRegistry_CallOnUpdate(IntPtr p)
        {
            SystemState *v0 = (SystemState *)((byte *)p + 0);

            SystemBaseRegistry.CallOnUpdate(v0);
        }