You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
588 B
20 lines
588 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using PaintCraft.Canvas.Configs;
|
|
|
|
namespace UltraCombos.Marvel.DrawHeroes
|
|
{
|
|
public class AppData : Singleton<AppData>
|
|
{
|
|
public bool dev = false;
|
|
public int deviceId;
|
|
public string roleId;
|
|
public string serial = "0123456789";
|
|
public Texture2D lastPainting = null;
|
|
public Texture2D lastThumbnail = null;
|
|
public Texture2D lastSignature = null;
|
|
public Dictionary<string, PageConfig> pages = new Dictionary<string, PageConfig>();
|
|
|
|
}
|
|
}
|
|
|