diff --git a/thermion_dart/lib/src/filament/src/interface/scene.dart b/thermion_dart/lib/src/filament/src/interface/scene.dart index d52fd576..b941f130 100644 --- a/thermion_dart/lib/src/filament/src/interface/scene.dart +++ b/thermion_dart/lib/src/filament/src/interface/scene.dart @@ -1,7 +1,18 @@ import 'package:thermion_dart/thermion_dart.dart'; abstract class Scene { + + /// Adds all renderable entities in [asset] to this scene. + /// + /// Future add(covariant ThermionAsset asset); + + /// Adds [entity] to this scene (which is assumed to have a Renderable + /// component). + /// Future addEntity(ThermionEntity entity); + + /// Removes all renderable entities in [asset] from this scene. + /// Future remove(covariant ThermionAsset asset); }