mirror of
https://gitlab.com/Syroot/Worms.git
synced 2025-05-05 19:29:34 +03:00
19 lines
476 B
C#
19 lines
476 B
C#
using Syroot.BinaryData;
|
|
|
|
namespace Syroot.Worms.Armageddon.ProjectX
|
|
{
|
|
public class FireTarget : ITarget
|
|
{
|
|
// ---- PROPERTIES ---------------------------------------------------------------------------------------------
|
|
|
|
public int Power { get; set; }
|
|
|
|
public int Spread { get; set; }
|
|
|
|
public int Time { get; set; }
|
|
|
|
[BinaryMember(BooleanCoding = BooleanCoding.Dword)]
|
|
public bool StayBetweenTurns { get; set; }
|
|
}
|
|
}
|