| 74 | enum CloudType { WAIT, SINGING, TOUCH, COUNT }; |
| 75 | |
| 76 | typedef struct Cloud { |
| 77 | std::array<juce::Image, CloudType::COUNT> images; |
| 78 | CloudType type = CloudType::WAIT; |
| 79 | juce::Rectangle<float> rect; |
| 80 | juce::Image& getImage() { return images[type]; } |
| 81 | } Cloud; |
| 82 | |
| 83 | // Parameters |
| 84 | // Use to save state since if the plugin is closed and open, will need these |
nothing calls this directly
no outgoing calls
no test coverage detected