mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-10 23:28:57 +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);
|
|
}; |