Esempio n. 1
0
        public static NativeListProxy <T> CreateNativeList(int capacity = -1)
        {
            var result = new NativeListProxy <T>();

            result.mImpl = NativeListImpl.CreateNativeList((UInt32)mStructSize, capacity);
            return(result);
        }
Esempio n. 2
0
 public void Append(NativeListImpl scr)
 {
     SDK_CsValueList_Append(CoreObject, scr.CoreObject);
 }
Esempio n. 3
0
 public NativeList(int capacity = -1)
 {
     mImpl = NativeListImpl.CreateNativeList((UInt32)mStructSize, capacity);
 }