mirror of
https://github.com/brendanhaines/ProcessingSketches.git
synced 2024-11-09 21:14:50 -07:00
9 lines
119 B
Plaintext
9 lines
119 B
Plaintext
|
public class Quad extends Copter {
|
||
|
public Quad(){
|
||
|
this.motors = new int[4];
|
||
|
}
|
||
|
|
||
|
public void draw3d(){
|
||
|
}
|
||
|
}
|