Start refactoring attack logic into weapon

This commit is contained in:
Loïc Prieto 2025-06-16 16:56:38 +02:00
parent 5a19f29e3b
commit feac5f79bd

View file

@ -0,0 +1,11 @@
package ninja.thefirearchmage.games.fourtykcalculator;
public class WeaponAttackResolution {
private double normalWounds;
private double mortalWounds;
private double hits;
private double woundsFromLethalHits;
private double woundsFromRerolls;
private double hitsFromRerolls;
}