CSCI3081W Drone Delivery System
RedDecorator.h
1 #ifndef RED_DECORATOR_H_
2 #define RED_DECORATOR_H_
3 
4 #include "PackageColorDecorator.h"
5 
11  public:
17 };
18 
19 #endif // RED_DECORATOR_H_
Decorator allowing for packages to become colored in different combinations of colors,...
Definition: PackageColorDecorator.h:10
Represents a package in a physical system. Packages move using euler integration based on a specified...
Definition: Package.h:17
Allows for the package to be colored red.
Definition: RedDecorator.h:10
RedDecorator(Package *)
Constructor for RedDecorator.