mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-12-02 17:57:59 +01:00
12 lines
194 B
C#
12 lines
194 B
C#
|
|
|||
|
namespace CinemaDirector.Helpers
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interface for any item that needs to bake results.
|
|||
|
/// </summary>
|
|||
|
interface IBakeable
|
|||
|
{
|
|||
|
void Bake();
|
|||
|
}
|
|||
|
}
|