2026-04-06 스킬시스템

This commit is contained in:
2026-04-06 18:05:11 +09:00
parent c0713abdaa
commit 42f92020c7
65 changed files with 457 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
using UnityEngine;
public interface ISkillEffect
{
void Execute(SkillInstance skill, Transform caster, float chargeRatio);
}