mirror of
https://gitlab.com/Syroot/Worms.git
synced 2025-03-13 13:50:14 +03:00
- Fixes remaining ProjectX issues and failing tests. - Relaxes dependencies on other libraries.
11 lines
317 B
C#
11 lines
317 B
C#
using Syroot.BinaryData;
|
|
|
|
namespace Syroot.Worms.Armageddon.ProjectX
|
|
{
|
|
public class BowStyle : IStyle
|
|
{
|
|
// ---- PROPERTIES ---------------------------------------------------------------------------------------------
|
|
|
|
[BinaryMember(Order = 1)] public int Damage { get; set; }
|
|
}
|
|
} |