UIColorData.cs 431 B

123456789101112131415161718
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace MetaClient
  5. {
  6. public class UIColorData {
  7. public ECustomStyple eCustomStyple;
  8. public int id;
  9. public Vector3 v3;
  10. public UIColorData(ECustomStyple _eCustomStyple,int _id,Vector3 _v3) {
  11. this.eCustomStyple = _eCustomStyple;
  12. this.id = _id;
  13. this.v3 = _v3;
  14. }
  15. }
  16. }