You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
321 B
15 lines
321 B
10 months ago
|
using UnityEngine;
|
||
|
|
||
|
public class NPC : MonoBehaviour
|
||
|
{
|
||
|
public string Name;
|
||
|
[Range(0, 100)]
|
||
|
public int Age;
|
||
|
//[PopUp("Good Guy", "Independent", "Bad Guy")]
|
||
|
public string Faction;
|
||
|
//[PopUp("Mayor", "Shopkeep", "Layabout")]
|
||
|
public string Occupation;
|
||
|
[Range(0, 10)]
|
||
|
public int Level;
|
||
|
}
|