Fixed removed constructor that was needed for IDEs
This commit is contained in:
parent
e48a89e70d
commit
97968ef491
|
@ -17,6 +17,15 @@ namespace Upsilon.BoundTypes
|
||||||
Name = backingType.Name;
|
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)
|
public static UserDataBoundTypeDefinition Create(System.Type backingType)
|
||||||
{
|
{
|
||||||
var obj = new UserDataBoundTypeDefinition(backingType)
|
var obj = new UserDataBoundTypeDefinition(backingType)
|
||||||
|
|
Loading…
Reference in New Issue