Semi-working Interactables rework

This commit is contained in:
Michal Pikulski
2025-09-10 16:42:43 +02:00
parent abffb5c558
commit 0ef25f265c
15 changed files with 271 additions and 124 deletions

View File

@@ -0,0 +1,11 @@
using UnityEngine;
/// <summary>
/// Base class for all characters that can interact in the world (e.g., player, follower).
/// </summary>
public abstract class Character : MonoBehaviour
{
// Placeholder for shared character logic or properties.
// For now, this is intentionally minimal.
}