initial commit
This commit is contained in:
@@ -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;}
|
||||
Reference in New Issue
Block a user