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
+10
View File
@@ -0,0 +1,10 @@
#include "GunProfile.h"
// Constructor implementation
GunProfile::GunProfile() {}
GunProfile::GunProfile(String name, int type) {
strcpy(_name, name.c_str());
_type=type;
}
String GunProfile::getName(){return String(_name);}
int GunProfile::getPowerLevel(){return _type;}