blob: 3d9d44286e04905d8333ff1fe5df2da9382e91ac [file] [log] [blame]
package org.qi4j.api.mixin;
// START SNIPPET: mixins
public interface Vehicle
{
void turn(float angle);
void accelerate(float acceleration);
// more methods
}
// END SNIPPET: mixins