initial commit

This commit is contained in:
Dan Priece
2026-05-19 09:15:34 -04:00
commit f4201b974b
21 changed files with 2130 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#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