Files
2025-08-13 09:26:42 +08:00

8 lines
88 B
C#

namespace CinemaDirector.Helpers
{
internal interface IBakeable
{
void Bake();
}
}