Removed old Utils.

This commit is contained in:
2023-04-24 14:51:49 +02:00
parent 00ff703a1b
commit 8dcb16073c
6 changed files with 1 additions and 98 deletions

View File

@ -1,22 +0,0 @@
namespace Utils
{
public static class ArrayExtensions
{
public static T[] Append<T>(this T[] array, T item)
{
if (array == null)
{
return new T[] { item };
}
var result = new T[array.Length + 1];
for (var i = 0; i < array.Length; i++)
{
result[i] = array[i];
}
result[array.Length] = item;
return result;
}
}
}

View File

@ -1,11 +0,0 @@
fileFormatVersion: 2
guid: 6e14f8172d2e1b345bd36b974bcaeb61
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant: