Fixed removed constructor that was needed for IDEs

This commit is contained in:
Deukhoofd 2018-12-07 14:05:17 +01:00
parent e48a89e70d
commit 97968ef491
No known key found for this signature in database
GPG Key ID: B4C087AC81641654
1 changed files with 9 additions and 0 deletions

View File

@ -17,6 +17,15 @@ namespace Upsilon.BoundTypes
Name = backingType.Name;
}
public UserDataBoundTypeDefinition(string name, Dictionary<string, UserDataBoundProperty> backingType)
: base(Type.UserData, typeof(void))
{
Name = name;
Properties = backingType;
}
public static UserDataBoundTypeDefinition Create(System.Type backingType)
{
var obj = new UserDataBoundTypeDefinition(backingType)