FileGenerator.Drawables.DrawablesGenerator.IsSupportedByCore C# (CSharp) Method

IsSupportedByCore() private method

private IsSupportedByCore ( string typeName ) : bool
typeName string
return bool
    private bool IsSupportedByCore(string typeName)
    {
      string[] invalidTypes = new string[] { "Color", "Matrix", "Rectangle" };
      return !invalidTypes.Contains(typeName);
    }