以下のコードで次のエラーが発生します。
期待されるクラス、デリゲート、列挙型、インターフェイス、または構造体。
これは、GH_ObjectResponseにカーソルを合わせると発生しますが、何が間違っていますか?
public class SettingsComponentAttributes : GH_ComponentAttributes
{
public SettingsComponentAttributes(IGH_Component SettingsComponent) :
base(SettingsComponent) {}
}
public override GH_ObjectResponse RespondToMouseDoubleClick(
GH_Canvas sender, GH_CanvasMouseEvent e)
{
((SettingsComponent)Owner).ShowSettingsGui();
return GH_ObjectResponse.Handled;
}