10 lines
165 B
C#
10 lines
165 B
C#
namespace KitsuneCafe.System
|
|
{
|
|
public static class Func
|
|
{
|
|
public static T Identity<T>(T value)
|
|
{
|
|
return value;
|
|
}
|
|
}
|
|
}
|