16 lines
280 B
C
16 lines
280 B
C
#ifndef l_shell_h
|
|
#define l_shell_h
|
|
|
|
static void create();
|
|
|
|
int SetCaliber(int x);
|
|
int SetMillimeter(int x);
|
|
int SetFirearmType(string str);
|
|
int SetAmmoType(string str);
|
|
string GetFirearmType();
|
|
int GetCaliber();
|
|
int GetMillimeter();
|
|
string GetAmmoType();
|
|
|
|
#endif /* l_shell_h */
|