blob: 797943d8befc133de8d06b6cdbc167dc524ec1ea [file] [log] [blame]
class Engine
{
ENUM EngineType {Null, Gas, Electric, Hybrid};
PROP(int cylinders = 4)
PROP(bool started)
PROP(int rpm)
PROP(EngineType type)
}