Mercurial > repos > IBDev-IBBoard.WarFoundry.API
annotate api/Delegates.cs @ 285:40362a9adf20 WarFoundry_v0.1
Re #311: can't read ZIP file packed by Linux app Archive Manager/File Roller
* Move API to using SharpZipLib fork
Also:
* Convince VS2k8 that it doesn't want to keep re-updating the project
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 30 Oct 2010 14:28:44 +0000 |
parents | 2f3cafb69799 |
children |
rev | line source |
---|---|
104
2f3cafb69799
Re #121: Migrate to AGPL license
IBBoard <dev@ibboard.co.uk>
parents:
82
diff
changeset
|
1 // This file (Delegates.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2007, 2008, 2009 IBBoard. |
15 | 2 // |
104
2f3cafb69799
Re #121: Migrate to AGPL license
IBBoard <dev@ibboard.co.uk>
parents:
82
diff
changeset
|
3 // 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. |
15 | 4 |
0 | 5 using System; |
6 using System.Collections.Generic; | |
82 | 7 using IBBoard.WarFoundry.API.Objects; |
8 | |
9 namespace IBBoard.WarFoundry.API | |
10 { | |
0 | 11 public delegate void ObjectChangedDelegate(WarFoundryObject oldValue, WarFoundryObject newValue); |
12 public delegate void ArmyChangedDelegate(Army oldValue, Army newValue); | |
82 | 13 public delegate void GameSystemChangedDelegate(GameSystem oldValue, GameSystem newValue); |
0 | 14 public delegate void ObjectAddDelegate(WarFoundryObject val); |
82 | 15 public delegate void ObjectRemoveDelegate(WarFoundryObject val); |
0 | 16 public delegate void UnitAddDelegate(Unit val); |
82 | 17 public delegate void UnitRemoveDelegate(Unit val); |
18 public delegate void ObjectUpdatedDelegate(WarFoundryObject val, string updatedValName); | |
19 public delegate void DoubleValChangedDelegate(WarFoundryObject obj, double oldValue, double newValue); | |
20 public delegate void FloatValChangedDelegate(WarFoundryObject obj, float oldValue, float newValue); | |
21 public delegate void StringValChangedDelegate(WarFoundryObject obj, string oldValue, string newValue); | |
22 public delegate void IntValChangedDelegate(WarFoundryObject obj, int oldValue, int newValue); | |
23 } |