blob: 4bdaac2bc18eb155b5cfabc7cbe547ea6eeb6417 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//TEST_IGNORE_FILE:
__exported import IMaterialInstance;
interface IMaterial
{
associatedtype MaterialInstance : IMaterialInstance;
MaterialInstance setupMaterialInstance();
}
|