Data update
This commit is contained in:
parent
35bcdeebf8
commit
74c69a0df6
2427 changed files with 31826 additions and 3468 deletions
|
|
@ -1,3 +0,0 @@
|
|||
public class Drums{
|
||||
//functions go here...
|
||||
}
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
public class LatinKit extends Drums{
|
||||
//functions go here...
|
||||
}
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
public class ElectronicKit extends Drums{
|
||||
//functions go here...
|
||||
}
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
public class Congas extends LatinKit{
|
||||
//functions go here...
|
||||
}
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
public class TechnoDrums extends ElectronicKit{
|
||||
//functions go here...
|
||||
}
|
||||
15
Task/Inheritance-Single/ChucK/inheritance-single.chuck
Normal file
15
Task/Inheritance-Single/ChucK/inheritance-single.chuck
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
public class Drums{
|
||||
//functions go here...
|
||||
}
|
||||
public class LatinKit extends Drums{
|
||||
//functions go here...
|
||||
}
|
||||
public class ElectronicKit extends Drums{
|
||||
//functions go here...
|
||||
}
|
||||
public class Congas extends LatinKit{
|
||||
//functions go here...
|
||||
}
|
||||
public class TechnoDrums extends ElectronicKit{
|
||||
//functions go here...
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue