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