mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-23 00:52:31 +08:00
16 lines
383 B
C#
16 lines
383 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace UnityExplorer
|
|
{
|
|
public static class ArgumentUtility
|
|
{
|
|
public static readonly Type[] EmptyTypes = new Type[0];
|
|
public static readonly object[] EmptyArgs = new object[0];
|
|
|
|
public static readonly Type[] ParseArgs = new Type[] { typeof(string) };
|
|
}
|
|
}
|