1
2
3
4
5
6
7
8
9
10
11
use crate::components::material_instance::HaMaterialInstance;
use core::prefab::{Prefab, PrefabComponent};
use serde::{Deserialize, Serialize};

#[derive(Debug, Default, Clone, Serialize, Deserialize)]
pub struct HaPostProcess {
    pub stages: Vec<HaMaterialInstance>,
}

impl Prefab for HaPostProcess {}
impl PrefabComponent for HaPostProcess {}