mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-03 12:11:47 +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);
|
|
}; |