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.
23 lines
382 B
23 lines
382 B
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UnityEditor.ShaderGraph.Legacy
|
|
{
|
|
[Serializable]
|
|
class StickyNoteData0
|
|
{
|
|
public string m_GuidSerialized;
|
|
|
|
public string m_Title;
|
|
|
|
public string m_Content;
|
|
|
|
public int m_TextSize;
|
|
|
|
public int m_Theme;
|
|
|
|
public Rect m_Position;
|
|
|
|
public string m_GroupGuidSerialized;
|
|
}
|
|
}
|