12 lines
289 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using UnityEngine;
namespace EasyInject.Behaviours
{
/// <summary>
/// author: spyn
/// description: 普通Bean组件用于想要作为Bean但没有自己特殊逻辑组件脚本的MonoBehavior
/// </summary>
public class BeanObject : MonoBehaviour
{
}
}