blob: 5743e8753f4c951642bd95de104d61baf3df61f8 [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
use crate::core::{Core, ObjectRef, OnAdded};
#[derive(Debug, Default)]
pub struct StateMachineLayerComponent;
impl Core for StateMachineLayerComponent {}
impl OnAdded for ObjectRef<'_, StateMachineLayerComponent> {
on_added!();
}