Battler.Battle.FightInt C# (CSharp) Method

FightInt() private method

private FightInt ( string value, int firstValue, int secondValue ) : BoutResult.BoutMiniResult
value string
firstValue int
secondValue int
return BoutResult.BoutMiniResult
        private BoutResult.BoutMiniResult FightInt(string value, int firstValue, int secondValue)
        {
            //TODO - CHANGE?
            return new BoutResult.BoutMiniResult() { Message = value, Fighter1Hits = firstValue, Fighter2Hits = secondValue };

            //if (firstValue > secondValue)
            //    return new BoutResult.BoutMiniResult() { Message = value, Fighter1Hits = firstValue - secondValue, Fighter2Hits = 0 };
            //else if (secondValue > firstValue)
            //    return new BoutResult.BoutMiniResult() { Message = value, Fighter1Hits = 0, Fighter2Hits = secondValue - firstValue };
            //else
            //    return new BoutResult.BoutMiniResult() { Message = value, Fighter1Hits = 0, Fighter2Hits = 0 };
        }