995a40e8ef
Added dummy MSBuild project and solution to get tooling help when editing these files.
18 lines
397 B
C#
18 lines
397 B
C#
using System;
|
|
using Godot.Collections;
|
|
|
|
namespace Godot
|
|
{
|
|
static class MarshalUtils
|
|
{
|
|
static bool IsArrayGenericType(Type type)
|
|
{
|
|
return type.GetGenericTypeDefinition() == typeof(Array<>);
|
|
}
|
|
|
|
static bool IsDictionaryGenericType(Type type)
|
|
{
|
|
return type.GetGenericTypeDefinition() == typeof(Dictionary<, >);
|
|
}
|
|
}
|
|
}
|