feat: 게임 인트로 씬 추가 작업

This commit is contained in:
aube.lee
2025-03-03 23:38:17 +09:00
parent 6f5f619166
commit f1806231d8
32 changed files with 2908 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public class IntroUI : UIBase
{
public List<IntroStoryData> introStories = new List<IntroStoryData>();
private IntroStoryDataManager introStoryDataManager;
private void OnEnable()
{
introStoryDataManager = new IntroStoryDataManager();
introStories = introStoryDataManager.introStories;
}
}
}