Sha256: bb27f7b62d1f73ad404846d136767f20397ca2e949315aa8c2d9ab1fccc301cc

Contents?: true

Size: 279 Bytes

Versions: 2

Compression:

Stored size: 279 Bytes

Contents

using System;
using System.Collections.Generic;

namespace ClrModels {
	public interface IWarrior
	{
 		int Id { get; }
	  string Name { get; set; }
	  bool IsKilledBy(IWeapon weapon);
	  int Attack(IWarrior target, IWeapon weapon);
	  int SurviveAttackWith(IWeapon weapon);
	}
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
caricature-0.7.7 spec/fixtures/IWarrior.cs
caricature-0.7.6 spec/fixtures/IWarrior.cs