16 lines
404 B
C#
16 lines
404 B
C#
|
// Copyright (c) Pixel Crushers. All rights reserved.
|
|||
|
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace PixelCrushers.DialogueSystem
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// This script adds a key or button trigger to a UIButton. Now just points to
|
|||
|
/// the Pixel Crushers common version.
|
|||
|
/// </summary>
|
|||
|
[AddComponentMenu("")] // Use wrapper.
|
|||
|
public class UIButtonKeyTrigger : PixelCrushers.UIButtonKeyTrigger { }
|
|||
|
|
|||
|
}
|