feat: Add core VN system scripts, package dependencies, and initial project settings.

This commit is contained in:
2025-12-10 16:15:23 +09:00
parent 50aa8b6b02
commit 6bd2f87ff5
166 changed files with 9883 additions and 1027 deletions

View File

@@ -0,0 +1,15 @@
/// <summary>스크립트 실행 결과 - 흐름 제어</summary>
public struct ScriptResult
{
public enum ResultType { Continue, Wait, Jump, End }
public ResultType Type;
public int NextIndex;
public static ScriptResult Continue => new() { Type = ResultType.Continue };
public static ScriptResult Wait => new() { Type = ResultType.Wait };
public static ScriptResult End => new() { Type = ResultType.End };
public static ScriptResult JumpTo(int index) =>
new() { Type = ResultType.Jump, NextIndex = index };
}