From 32e76c2ca5a322be77f9a1663b5240986e372bb7 Mon Sep 17 00:00:00 2001 From: Hayodea Hakol Date: Tue, 2 Sep 2025 17:01:47 -0400 Subject: [PATCH] Goal: Goals are now Comblogic exprs --- smocore/include/goal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/smocore/include/goal.h b/smocore/include/goal.h index 015560c..3f1933a 100644 --- a/smocore/include/goal.h +++ b/smocore/include/goal.h @@ -1,12 +1,12 @@ #ifndef _GOAL_H #define _GOAL_H -#include +#include namespace smo { class Goal -: public simulator::Scene { +: public concepts::Concept { public: Goal() = default; ~Goal() = default;