Hi War Book,
If I am understanding correctly, you have two objects you want to import at the same time in one game patch.
Below is an example of code that I've used to import two CfgVehicle objects at the same time.
class CfgPatches {
class NewMod{
addonRootClass = "";
requiredAddons[] = {""};
requiredVersion = 0.1;
units[] = { "Submarine", "Torpedo"};
weapons[] = {};
};
};
class CfgVehicles {
class Submarine {
model = "\Path\To\Submarine_model.p3d"
// Other stuff for your submarine
};
class Torpedo {
model = "\Path\To\Torprdo_model.p3d"
// Other stuff for your torpedo
};
};