|
Last change
on this file was 191, checked in by chronos, 6 years ago |
- Added: AI Template directory with manual for development of custom AI from original game.
|
|
File size:
404 bytes
|
| Line | |
|---|
| 1 | using System;
|
|---|
| 2 | using System.Collections.Generic;
|
|---|
| 3 | using CevoAILib;
|
|---|
| 4 |
|
|---|
| 5 | namespace 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.