1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Digging and placing sounds

This commit is contained in:
Perttu Ahola 2012-03-24 00:33:58 +02:00
parent 6c14025b2d
commit 77120a021d
4 changed files with 96 additions and 16 deletions

View file

@ -82,11 +82,14 @@ struct DigParams
float time;
// Caused wear
u16 wear;
std::string main_group;
DigParams(bool a_diggable=false, float a_time=0, u16 a_wear=0):
DigParams(bool a_diggable=false, float a_time=0, u16 a_wear=0,
std::string a_main_group=""):
diggable(a_diggable),
time(a_time),
wear(a_wear)
wear(a_wear),
main_group(a_main_group)
{}
};
@ -100,10 +103,12 @@ struct HitParams
{
s16 hp;
s16 wear;
std::string main_group;
HitParams(s16 hp_=0, s16 wear_=0):
HitParams(s16 hp_=0, s16 wear_=0, std::string main_group_=""):
hp(hp_),
wear(wear_)
wear(wear_),
main_group(main_group_)
{}
};
@ -118,6 +123,7 @@ struct PunchDamageResult
bool did_punch;
int damage;
int wear;
std::string main_group;
PunchDamageResult():
did_punch(false),