16 lines
308 B
C#
16 lines
308 B
C#
using UnityEngine;
|
|
|
|
namespace AlicizaX
|
|
{
|
|
[DisallowMultipleComponent]
|
|
[AddComponentMenu("Game Framework/Procedure")]
|
|
public sealed class ProcedureComponent : MonoBehaviour
|
|
{
|
|
private void Awake()
|
|
{
|
|
AppServices.RegisterApp(new ProcedureService());
|
|
}
|
|
}
|
|
}
|
|
|