source: tags/1.2.0/AI Template/Project/Unit.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: 234 bytes
Line 
1using System;
2using System.Collections.Generic;
3using CevoAILib;
4
5namespace AI
6{
7 sealed class Unit : AUnit
8 {
9 public Unit(Empire empire, int indexInSharedMemory)
10 : base(empire, indexInSharedMemory)
11 {
12 }
13 }
14}
Note: See TracBrowser for help on using the repository browser.