PlaceableObjectConnector.cs 493 B

12345678910111213141516
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using Sirenix.OdinInspector;
  5. namespace KairoEngine.Grids
  6. {
  7. [System.Serializable]
  8. public class PlaceableObjectConnector
  9. {
  10. [HideLabel, HorizontalGroup("connector", 0.4f)] public string title = "new connector";
  11. [HideLabel, HorizontalGroup("connector", 0.3f)] public Vector2Int position;
  12. [HideLabel, HorizontalGroup("connector", 0.3f)] public PlacedObjectType.Dir dir;
  13. }
  14. }