You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
631 B
C#
24 lines
631 B
C#
using System;
|
|
using Unity.BossRoom.Infrastructure;
|
|
using UnityEngine;
|
|
|
|
namespace Unity.BossRoom.Gameplay.Configuration
|
|
{
|
|
/// <summary>
|
|
/// This ScriptableObject defines a Player Character for BossRoom. It defines its CharacterClass field for
|
|
/// associated game-specific properties, as well as its graphics representation.
|
|
/// </summary>
|
|
[CreateAssetMenu]
|
|
[Serializable]
|
|
public sealed class Avatar : GuidScriptableObject
|
|
{
|
|
public CharacterClass CharacterClass;
|
|
|
|
public GameObject Graphics;
|
|
|
|
public GameObject GraphicsCharacterSelect;
|
|
|
|
public Sprite Portrait;
|
|
}
|
|
}
|