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