You are viewing documentation for v1.1. Switch to current version โ†’

๐Ÿงท 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.