Advertisement
Kyle_Dev

WaypointEditor - Waypoint

Nov 3rd, 2019
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.48 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. namespace Core
  6. {
  7.     namespace Waypoints
  8.     {
  9.         public class Waypoint : MonoBehaviour
  10.         {
  11.             [SerializeField, HideInInspector] string m_areaname;
  12.  
  13.             public string WaypointAreaName { get { return m_areaname; } set { m_areaname = value; } }
  14.             //public int WaypointAreaID { get { return m_waypointID; } set { m_waypointID = value; } }
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement