Person.cs 195 B

12345678910
  1. using UnityEngine;
  2. namespace Assets.StreetLight.Poco
  3. {
  4. public class Person
  5. {
  6. public int Id { get; set; }
  7. public Vector2 GroundPosition { get; set; }
  8. }
  9. }