14 lines
272 B
C#
14 lines
272 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace That_One_Nerd.Unity.Games.ArcadeManiac.Minigames.HackerMagic.ObjectModels
|
|
{
|
|
[Serializable]
|
|
public struct MarkupInfo
|
|
{
|
|
public Color Color;
|
|
public bool MarkBold;
|
|
public bool MarkItalic;
|
|
}
|
|
}
|