-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDraughtsCatalogs.cs
28 lines (24 loc) · 930 Bytes
/
DraughtsCatalogs.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright © John & Katie Gietzen. All Rights Reserved. This source is subject to the MIT license. Please see license.md for more information.
[assembly: GameTheory.Catalogs.Catalog(typeof(GameTheory.Catalogs.IGameCatalog), typeof(GameTheory.Games.Draughts.DraughtsCatalogs.Games))]
[assembly: GameTheory.Catalogs.Catalog(typeof(GameTheory.Catalogs.IPlayerCatalog), typeof(GameTheory.Games.Draughts.DraughtsCatalogs.Players))]
namespace GameTheory.Games.Draughts
{
using GameTheory.Catalogs;
internal static class DraughtsCatalogs
{
public class Games : AssemblyGameCatalog
{
public Games()
: base(typeof(DraughtsCatalogs).Assembly)
{
}
}
public class Players : AssemblyPlayerCatalog
{
public Players()
: base(typeof(DraughtsCatalogs).Assembly)
{
}
}
}
}