/* * Author: Patrick-Christopher Mattulat * Co-Author: Claude Sonnet 4.6 (LLM) * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-08 * Changed: 2026-06-23 * * */ #ifndef LS_STD_I_EVALUATOR_HPP #define LS_STD_I_EVALUATOR_HPP #include namespace ls::standard::core::interface_type { class LS_STD_DYNAMIC_GOAL IEvaluator { public: IEvaluator(); virtual ~IEvaluator(); virtual void evaluate() = 0; }; } #endif