Various changes and tweaks to run better
This commit is contained in:
@@ -5,10 +5,10 @@ namespace Upsilon.BaseTypes.UserData
|
||||
{
|
||||
internal sealed class GenericUserData : ScriptType, IUserData
|
||||
{
|
||||
public GenericUserData(object dictionary)
|
||||
public GenericUserData(object obj)
|
||||
{
|
||||
Value = dictionary;
|
||||
_typeInfo = UserDataTypeHandler.GetTypeInfo(dictionary.GetType());
|
||||
Value = obj;
|
||||
_typeInfo = UserDataTypeHandler.GetTypeInfo(obj.GetType());
|
||||
}
|
||||
public override Type Type => Type.UserData;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user