mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
14 lines
219 B
C++
14 lines
219 B
C++
|
|
// TODO: convert into C++ template
|
||
|
|
|
||
|
|
import edu.wpi.first.wpilibj.command.Trigger;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* New and improved C++
|
||
|
|
*/
|
||
|
|
public class $classname extends Trigger {
|
||
|
|
|
||
|
|
public boolean get() {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
}
|