mirror of
https://github.com/brendanhaines/ProcessingSketches.git
synced 2024-11-09 21:14:50 -07:00
8 lines
129 B
Plaintext
8 lines
129 B
Plaintext
public abstract class Copter {
|
|
public int[] channels;
|
|
public int[] motors;
|
|
|
|
public Copter(){}
|
|
public void draw3d(){}
|
|
}
|