๐งท QoL Node Target Interface
Short Description
Marker interface for QoL classes that can be used as node targets in tooling.
Long Description
This interface is used as a lightweight marker for classes that participate in QoL reference systems. It keeps node target queries generic without imposing extra behavior.
๐ Features
- Marker interface for QoL node targets.
๐ Usage Examples
QoL classes already implement this interface; no additional setup is required.
class AGorgeousGameState : public AGameState, public IGorgeousQualityOfLifeNodeTarget_I
{
// ...
};
Best Practices
- Use the interface for type checks rather than hard-coding QoL class names.
Troubleshooting
- If node target queries fail, confirm the class implements the interface.