auto-sync
This commit is contained in:
parent
154f9fef45
commit
4d2c4258c9
|
@ -0,0 +1,12 @@
|
|||
package com.rusefi.trigger;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 1/18/2015
|
||||
*/
|
||||
public class MiataNA implements TriggerShape {
|
||||
@Override
|
||||
public int getTotalToothCount() {
|
||||
return 6;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
package com.rusefi.trigger;
|
||||
|
||||
/**
|
||||
* http://rusefi.com/wiki/index.php?title=Manual:Software:Trigger
|
||||
*
|
||||
* (c) Andrey Belomutskiy
|
||||
* 1/18/2015
|
||||
*/
|
||||
public interface TriggerShape {
|
||||
public int getTotalToothCount();
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
package com.rusefi.trigger;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 1/18/2015
|
||||
*/
|
||||
public class TriggerShapeHolder {
|
||||
public static TriggerShape CURRENT = new MiataNA();
|
||||
}
|
Loading…
Reference in New Issue