12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 loyalsoft. All rights reserved.
- // Homepage: http://www.game7000.com/
- // Feedback: http://www.game7000.com/
- //------------------------------------------------------------
- namespace UnityGameFramework.Runtime
- {
- public sealed partial class DebuggerComponent : GameFrameworkComponent
- {
- private sealed partial class RuntimeMemoryInformationWindow<T> : ScrollableDebuggerWindowBase where T : UnityEngine.Object
- {
- private sealed class Sample
- {
- private readonly string m_Name;
- private readonly string m_Type;
- private readonly long m_Size;
- private bool m_Highlight;
- public Sample(string name, string type, long size)
- {
- m_Name = name;
- m_Type = type;
- m_Size = size;
- m_Highlight = false;
- }
- public string Name
- {
- get
- {
- return m_Name;
- }
- }
- public string Type
- {
- get
- {
- return m_Type;
- }
- }
- public long Size
- {
- get
- {
- return m_Size;
- }
- }
- public bool Highlight
- {
- get
- {
- return m_Highlight;
- }
- set
- {
- m_Highlight = value;
- }
- }
- }
- }
- }
- }
|