mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-03-12 13:42:03 +00:00
8 lines
180 B
Plaintext
8 lines
180 B
Plaintext
enum MealType { "rice", "noodles", "other" };
|
|
|
|
interface Meal {
|
|
attribute MealType type;
|
|
attribute float size; // in grams
|
|
|
|
void initialize(MealType type, float size);
|
|
}; |