Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using UnityEngine;
- using System.Collections;
- using System.Collections.Generic;
- public class DialogueSegment : ScriptableObject {
- public string title;
- public string body;
- public List<string> responseOptions;
- public DialogueSegment(string title, string body, List<string> responseOptions)
- {
- this.title = title;
- this.body = body;
- this.frames = frames;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment