Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Framework/CSound/Instrument.py
blob: ecb22f8a8f0b80e58cc95721f79d72a15c9bb1ee (plain)
1
2
3
4
5
6
7
8
9
10
11
class Instrument:

    def __init__( self, instrumentID, csoundInstrumentID, instrumentRegister, soundClass, category, loopStart, loopEnd, crossDur ):
        self.instrumentID = instrumentID
        self.csoundInstrumentID = csoundInstrumentID
        self.instrumentRegister = instrumentRegister
        self.soundClass = soundClass
        self.category = category
	self.loopStart = loopStart
	self.loopEnd = loopEnd
	self.crossDur = crossDur