source: tags/1.2.0/AI Template/Project/Model.cs

Last change on this file was 191, checked in by chronos, 4 years ago
  • Added: AI Template directory with manual for development of custom AI from original game.
File size: 404 bytes
Line 
1using System;
2using System.Collections.Generic;
3using CevoAILib;
4
5namespace AI
6{
7 sealed class Model : AModel
8 {
9 public Model(Empire empire, int indexInSharedMemory)
10 : base(empire, indexInSharedMemory)
11 {
12 }
13 }
14
15 sealed class ForeignModel : AForeignModel
16 {
17 public ForeignModel(Empire empire, int indexInSharedMemory)
18 : base(empire, indexInSharedMemory)
19 {
20 }
21 }
22}
Note: See TracBrowser for help on using the repository browser.