import { EntityEidType, BasicInfoAtomType, TransformAtomType, AssetAtomType, VisibleAtomType, EntityFlagAtomType, EntityOutlinerAtomType } from '../data-type';
import { MaterialAtomType } from './material';
/**
 * @interface StaticType
 * @extends EntityEidType,Partial<BasicInfoAtomType>,Partial<TransformAtomType>,Partial<VisibleAtomType>,Partial<MaterialAtomType>,Partial<AssetAtomType>,Partial<EntityFlagAtomType>
 */
export interface StaticType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<VisibleAtomType>, Partial<MaterialAtomType>, Partial<AssetAtomType>, Partial<EntityFlagAtomType>, Partial<EntityOutlinerAtomType> {
}
/**
 * @interface IGenerate
 * @param {Partial<AssetAtomType>} AssetAtom (optional)
 * @param {Partial<MaterialAtomType>} MaterialAtom (optional)
 * @param {Partial<BasicInfoAtomType>} BasicInfoAtom (optional)
 * @param {Partial<TransformAtomType>} TransformAtom (optional)
 * @param {Partial<VisibleAtomType>} VisibleAtom (optional)
 * @param {Partial<EntityFlagAtomType>} EntityFlagAtom (optional)
 */
export interface IGenerate {
    AssetAtom?: Partial<AssetAtomType>;
    MaterialAtom?: Partial<MaterialAtomType>;
    BasicInfoAtom?: Partial<BasicInfoAtomType>;
    TransformAtom?: Partial<TransformAtomType>;
    VisibleAtom?: Partial<VisibleAtomType>;
    EntityFlagAtom?: Partial<EntityFlagAtomType>;
    EntityOutlinerAtom?: Partial<EntityOutlinerAtomType>;
}
