CSCI3081W Drone Delivery System
BlueDecorator.h
1 #ifndef BLUE_DECORATOR_H_
2 #define BLUE_DECORATOR_H_
3 
4 #include "PackageColorDecorator.h"
5 
11  public:
17 };
18 
19 #endif // BLUE_DECORATOR_H_
Allows for the package to be colored blue.
Definition: BlueDecorator.h:10
BlueDecorator(Package *)
Constructor for BlueDecorator.
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