mirror of
https://github.com/HoonTB/Project-AS.git
synced 2025-12-26 20:01:21 +09:00
feat: Add core VN system scripts, package dependencies, and initial project settings.
This commit is contained in:
17
Assets/_MAIN/Scripts/Core/ScriptAction.cs
Normal file
17
Assets/_MAIN/Scripts/Core/ScriptAction.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using Cysharp.Threading.Tasks;
|
||||
|
||||
/// <summary>컴파일된 스크립트 액션 - 실행 가능한 최소 단위</summary>
|
||||
public class ScriptAction
|
||||
{
|
||||
/// <summary>
|
||||
/// 실행 함수 - UniTask<ScriptResult> 반환
|
||||
/// </summary>
|
||||
public Func<ScriptContext, UniTask<ScriptResult>> Execute { get; set; }
|
||||
|
||||
/// <summary>디버깅용 원본 타입 (label, msg, char 등)</summary>
|
||||
public string DebugType { get; set; }
|
||||
|
||||
/// <summary>디버깅용 추가 정보</summary>
|
||||
public string DebugInfo { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user