mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-23 06:17:58 +01:00
9 lines
192 B
C#
9 lines
192 B
C#
// Amplify Bloom - Advanced Bloom Post-Effect for Unity
|
|
// Copyright (c) Amplify Creations, Lda <info@amplify.pt>
|
|
namespace AmplifyBloom
|
|
{
|
|
interface IAmplifyItem
|
|
{
|
|
void Destroy();
|
|
}
|
|
}
|