11 lines
221 B
C#
11 lines
221 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Character
|
|
{
|
|
public string name{get; set;}
|
|
public string occupation{get; set;}
|
|
public int boundaryLevel{get; set;}
|
|
}
|