You've already forked Darklings-FightingGame
mirror of
https://github.com/izzy2lost/Darklings-FightingGame.git
synced 2026-03-10 11:35:19 -07:00
19 lines
493 B
C#
19 lines
493 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using UnityEngine;
|
|||
|
|
|
|||
|
|
namespace Demonics
|
|||
|
|
{
|
|||
|
|
[Serializable]
|
|||
|
|
public struct PromptIcon
|
|||
|
|
{
|
|||
|
|
public string customInputContextString;
|
|||
|
|
public Sprite customInputContextIcon;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
[CreateAssetMenu(fileName = "Device Settings", menuName = "Scriptable Objects/Device Settings", order = 1)]
|
|||
|
|
public class DeviceSettings : ScriptableObject
|
|||
|
|
{
|
|||
|
|
public List<PromptIcon> promptIcons = new List<PromptIcon>();
|
|||
|
|
}
|
|||
|
|
}
|