summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/CollectNpcInfo.cs
blob: 0accf1b46072f3bc8041711ef654b86e6de35177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using UnityEngine;

namespace XMainClient
{
	internal class CollectNpcInfo
	{
		public uint id = 0u;

		public bool use = false;

		public string name;

		public Vector3 pos = Vector3.zero;

		public CollectNpcInfo(uint _npcID, Vector3 _pos, string _name)
		{
			this.id = _npcID;
			this.pos = _pos;
			this.use = false;
			this.name = _name;
		}
	}
}