I'm creating a node using GDExtension. I'm getting the same two errors for two class members in my header file.
TrackWriter.h(12): error C3646: 'effect': unknown override specifier
TrackWriter.h(12): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
TrackWriter.h(13): error C3646: 'recording': unknown override specifier
TrackWriter.h(13): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int`
These are lines 12 and 13:
AudioEffect effect;
AudioStreamWAV recording;
I'm using templates provided by a tutorial. The tutorial had an int, and didn't talk about how to use types like AudioEffect.
So, how do I use these types in my class?
Here's the header file: