public GameplayObjectInfo(string name_, GameplayObjectType type_) { objectName = name_; objectType = type_; }
public GameplayObjectInfo(GameplayObjectType type_) { objectType = type_; }
public GameplayObjectInfo() { objectType = GameplayObjectType.DEFAULT; }