From 9d8593a3f5f0952648f8ed40b30c5ed7c445670e Mon Sep 17 00:00:00 2001 From: Avery Norris Date: Thu, 12 Feb 2026 12:23:25 -0500 Subject: [PATCH] Generalizing Bodies --- Awperative/Kernel/Scripting/Component/Core.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Awperative/Kernel/Scripting/Component/Core.cs b/Awperative/Kernel/Scripting/Component/Core.cs index 000b576..9861bcb 100644 --- a/Awperative/Kernel/Scripting/Component/Core.cs +++ b/Awperative/Kernel/Scripting/Component/Core.cs @@ -11,9 +11,8 @@ namespace Awperative; /// Anything that inherits Component is built to work in any DockerEntity, which leads to generic /// Assumptions. If you want to make a body specific or scene specific component both classes are available. /// -public abstract partial class Component +public abstract partial class Component : DockerEntity { - public Scene Scene { get; set; } internal DockerEntity Docker;