Files
ChronoDisplay/ChronoProfile.h
2026-05-19 09:15:34 -04:00

27 lines
633 B
C++

#ifndef ChronoProfile_H
#define ChronoProfile_H
#include <Arduino.h>
#include "ProjectileProfile.h"
#include "GunProfile.h"
class ChronoProfile {
public:
// Constructor: Called when a ChronoProfile object is created
ChronoProfile();
ChronoProfile(GunProfile gunProfile, ProjectileProfile projectileProfile);
// Public methods & variables
GunProfile getGunProfile();
void setGunProfile(GunProfile profile);
ProjectileProfile getProjectileProfile();
void setProjectileProfile(ProjectileProfile profile);
private:
ProjectileProfile _projectileProfile;
GunProfile _gunProfile;
};
#endif