10 lines
99 B
C#
10 lines
99 B
C#
|
using System;
|
||
|
|
||
|
namespace AmplifyBloom
|
||
|
{
|
||
|
internal interface IAmplifyItem
|
||
|
{
|
||
|
void Destroy();
|
||
|
}
|
||
|
}
|