15 lines
261 B
C#
15 lines
261 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace TON
|
|
{
|
|
[System.Serializable]
|
|
public class IntroStoryData
|
|
{
|
|
public int background;
|
|
public string speaker;
|
|
public string content;
|
|
}
|
|
}
|