simple one.
This commit is contained in:
+2
-2
@@ -108,9 +108,9 @@ vector<RString> AttackArray::ToVectorString() const
|
|||||||
|
|
||||||
void AttackArray::UpdateStartTimes(float delta)
|
void AttackArray::UpdateStartTimes(float delta)
|
||||||
{
|
{
|
||||||
FOREACH(Attack, *this, a)
|
for (Attack &a : *this)
|
||||||
{
|
{
|
||||||
a->fStartSecond += delta;
|
a.fStartSecond += delta;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user