warioddly/dimengen

Generating super class properties

Open

#5 opened on Jun 5, 2025

View on GitHub
 (0 comments) (0 reactions) (1 assignee)C++ (2 forks)auto 404
enhancementgood first issuehelp wanted

Repository metrics

Stars
 (10 stars)
PR merge metrics
 (PR metrics pending)

Description

abstract class Dimensions {

  final double zero = 0.0;
  final double xxs = 2.0;
  final double xs = 4.0;
  final double s = 8.0;
  final double m = 16.0;
  final double l = 24.0;
  final double xl = 32.0;
  final double xxl = 48.0;

}

@Spacegen()
class _Spaces extends Dimensions {
  _Spaces._();
}

Contributor guide