import { EntityEidType, BasicInfoAtomType, TransformAtomType } from '../data-type';
export interface ParticleType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<ParticleEntityAtomType> {
}
export interface ParticleEntityAtomType {
    particleType: string;
}
