Try something like this in your extension:
if (!class_exists('Plugin_name'))
{
include_once PATH_PI.'pi.plugin_name.php';
}
$PI = new Plugin_name;
$return_value = $PI->your_method('argument1', 'argument3');Depending on what you need you could also create a super class that you plugin class and extension class both inherit from.
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.