Files
rive-flutter/lib/src/generated/container_component_base.dart
mjtalbot fe30e35068 Run generate
just trying to flush through some of the bits coming out of running generate core runtime & generate core runtime without making a mess in other pr's .
this is split into four commits which might be helpful when looking at the changes here.

Diffs=
ad72cfce5 Run generate (#5490)
7ee5f7d5a Increases the margin for the approx call to some of the wangs formula… (#5506)
2f224da7f Runtime ellipsis (#5482)

Co-authored-by: Maxwell Talbot <talbot.maxwell@gmail.com>
2023-06-29 08:29:17 +00:00

15 lines
430 B
Dart

/// Core automatically generated
/// lib/src/generated/container_component_base.dart.
/// Do not modify manually.
import 'package:rive/src/rive_core/component.dart';
abstract class ContainerComponentBase extends Component {
static const int typeKey = 11;
@override
int get coreType => ContainerComponentBase.typeKey;
@override
Set<int> get coreTypes =>
{ContainerComponentBase.typeKey, ComponentBase.typeKey};
}