add missing override modifier for _process()

This commit is contained in:
pseidemann
2023-11-19 15:31:44 +01:00
committed by GitHub
parent 7f97b671f9
commit 067170fb8b

View File

@@ -181,7 +181,7 @@ GDExtension node we'll be creating. We will name it ``gdexample.h``:
GDExample();
~GDExample();
void _process(double delta);
void _process(double delta) override;
};
}