# HG changeset patch # User IBBoard # Date 1476646004 -3600 # Node ID 2fc99446f9c9adbff57a1977f417d7fb6f6a2a00 # Parent 51123a620455d0549fa887c3c2617cf869f5698d Add initial structure for categories of equipment diff -r 51123a620455 -r 2fc99446f9c9 API/Objects/EquipmentCategory.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/API/Objects/EquipmentCategory.cs Sun Oct 16 20:26:44 2016 +0100 @@ -0,0 +1,16 @@ +// This file (EquipmentCategory.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2013 IBBoard +// +// The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license. +using System; + +namespace IBBoard.WarFoundry.API.Objects +{ + public class EquipmentCategory : WarFoundryObject + { + public EquipmentCategory(string id, string name) : base(id, name) + { + //Do nothing special + } + } +} + diff -r 51123a620455 -r 2fc99446f9c9 API/Objects/GameSystem.cs --- a/API/Objects/GameSystem.cs Sun Apr 28 19:34:15 2013 +0100 +++ b/API/Objects/GameSystem.cs Sun Oct 16 20:26:44 2016 +0100 @@ -356,5 +356,11 @@ return preferred; } + + public EquipmentCategory[] EquipmentCategories + { + get; + set; + } } } diff -r 51123a620455 -r 2fc99446f9c9 IBBoard.WarFoundry.API-Droid.csproj --- a/IBBoard.WarFoundry.API-Droid.csproj Sun Apr 28 19:34:15 2013 +0100 +++ b/IBBoard.WarFoundry.API-Droid.csproj Sun Oct 16 20:26:44 2016 +0100 @@ -147,6 +147,7 @@ + diff -r 51123a620455 -r 2fc99446f9c9 IBBoard.WarFoundry.API.csproj --- a/IBBoard.WarFoundry.API.csproj Sun Apr 28 19:34:15 2013 +0100 +++ b/IBBoard.WarFoundry.API.csproj Sun Oct 16 20:26:44 2016 +0100 @@ -165,6 +165,7 @@ +