Separated bits and add on selection (cyberware, etc.)

- Moved json files to /data directory
- Added Getting Started section in README
- JSON Serialization can now be globally accessed
This commit is contained in:
Tony Bark 2026-02-04 15:04:51 -05:00
parent b24157309d
commit 533e1bb076
9 changed files with 153 additions and 19 deletions

View file

@ -1,7 +1,5 @@
namespace Cyberbits;
using System.Text.Json.Serialization;
public record Bits(
[property: JsonPropertyName("image")]
string Image,
@ -10,7 +8,5 @@ public record Bits(
[property: JsonPropertyName("base")]
string[] Base,
[property: JsonPropertyName("style")]
string[] Style,
[property: JsonPropertyName("cyberware")]
string[] Cyberware
);
string[] Style
);