31 lines
787 B
C#
31 lines
787 B
C#
// Felix-Bang:FBReusableObject
|
||
// へ /|
|
||
// /\7 ∠_/
|
||
// / │ / /
|
||
// │ Z _,< / /`ヽ
|
||
// │ ヽ / 〉
|
||
// Y ` / /
|
||
// イ● 、 ● ⊂⊃〈 /
|
||
// () へ | \〈
|
||
// >ー 、_ ィ │ //
|
||
// / へ / ノ<| \\
|
||
// ヽ_ノ (_/ │//
|
||
// 7 |/
|
||
// >―r ̄ ̄`ー―_
|
||
|
||
using System.Collections;
|
||
using System.Collections.Generic;
|
||
using UnityEngine;
|
||
|
||
namespace FBFramework
|
||
{
|
||
public abstract class FBReusableObject : MonoBehaviour,IFBReusable
|
||
{
|
||
public abstract void OnSpawn();
|
||
|
||
public abstract void OnUnspawn();
|
||
|
||
}
|
||
}
|
||
|