Initial Combat Implementation

This commit is contained in:
Luis Gonzalez
2026-05-31 21:35:12 -07:00
parent 7fa77ce821
commit 1f647dd5e1
166 changed files with 93337 additions and 91 deletions
@@ -0,0 +1,16 @@
using Unity.Entities;
namespace ProjectM.Simulation
{
/// <summary>
/// Per-entity effective character stats (movement + survivability): authored base (from the
/// CharacterStats blob keyed by CharacterStatsRef) folded with the StatModifier buffer by
/// StatRecomputeSystem each predicted tick. Derived/local, NOT replicated (see EffectiveAbilityStats).
/// </summary>
public struct EffectiveCharacterStats : IComponentData
{
public float MoveSpeed;
public float TurnRateRadiansPerSec;
public float MaxHealth;
}
}