源战役客户端
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

16 righe
294 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using UnityEditor.Graphs;
  6. using UnityEngine;
  7. namespace Assets.Editor.Treemap
  8. {
  9. interface ITreemapRenderable
  10. {
  11. Color GetColor();
  12. Rect GetPosition();
  13. string GetLabel();
  14. }
  15. }