import { EntityEidType, BasicInfoAtomType, AssetAtomType, EntityOutlinerAtomType } from '../data-type';
/**
 * @interface StaticType
 * @extends EntityEidType,Partial<BasicInfoAtomType>,Partial<AssetAtomType>,Partial<EntityOutlinerAtomType>
 */
export interface TextureType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<AssetAtomType>, Partial<EntityOutlinerAtomType> {
}
/**
 * @interface IGenerate
 * @param {Partial<AssetAtomType>} AssetAtom (optional)
 * @param {Partial<EntityOutlinerAtomType>} EntityOutlinerAtom (optional)
 * @param {Partial<BasicInfoAtomType>} BasicInfoAtom (optional)
 */
export interface IGenerate {
    AssetAtom?: Partial<AssetAtomType>;
    BasicInfoAtom?: Partial<BasicInfoAtomType>;
    EntityOutlinerAtom?: Partial<EntityOutlinerAtomType>;
}
