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
+12
View File
@@ -0,0 +1,12 @@
#include "ChronoProfile.h"
// Constructor implementation
ChronoProfile::ChronoProfile() {}
ChronoProfile::ChronoProfile(GunProfile gunProfile, ProjectileProfile projectileProfile) {
_gunProfile=gunProfile;
_projectileProfile=projectileProfile;
}
GunProfile ChronoProfile::getGunProfile(){return _gunProfile;}
void ChronoProfile::setGunProfile(GunProfile profile){_gunProfile=profile;}
ProjectileProfile ChronoProfile::getProjectileProfile(){return _projectileProfile;}
void ChronoProfile::setProjectileProfile(ProjectileProfile profile){_projectileProfile=profile;}