steampunk-quest/Assets/scripts/dialogSystem/Roles.cs

11 lines
199 B
C#
Raw Normal View History

2022-01-19 19:22:21 +03:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public enum Roles {
PILOT,
VOICE_ASSISTANT,
2022-01-29 11:50:50 +03:00
CAPTAIN,
CAPTAIN_IN_IMAGINATION,
VOICE_ASSISTANT_IN_IMAGINATION
2022-01-19 19:22:21 +03:00
}