mirror of
https://github.com/roytam1/UXP.git
synced 2026-06-10 18:38:34 +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);
|
|
}; |