123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using UnityEngine;
- using UnityEngine.UI;
- public class Beacon
- {
- public uint? id { get; set; }
- public float x { get; set; }
- public float y { get; set; }
- public float z { get; set; } // этаж
- public string uuid { get; set; }
- public uint minor { get; set; }
- public uint major { get; set; }
- public GameObject beacon { get; set; }
- public Button button { get; set; }
- }
|