Newer
Older
Dreamsturbia-Project-IADE-Unity3D / Assets / Scripts / Dialog / DialogueMessage.cs
@Rackday Rackday on 21 Aug 333 bytes Project Added
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

[System.Serializable]
public struct DialogueMessage
{
    public string author;
    [TextArea]public string content;
    public DialogueMessage(string author,string content)
    {
        this.author = author;
        this.content = content;
    }
  
}