view api/Delegates.cs @ 11:5a1df00b0359

Re #9 - Make WarFoundry API load files in small methods * Add "add unit type" and "add equipment" methods to Race * Deprecate old "set unit types" and "set equipment" methods on Race * Update WarFoundryXmlFactory to use new methods * Create DuplicateItemException for later use
author IBBoard <dev@ibboard.co.uk>
date Sun, 18 Jan 2009 16:24:03 +0000
parents 520818033bb6
children 306558904c2a
line wrap: on
line source

using System;
using System.Collections.Generic;
using IBBoard.WarFoundry.API.Objects;

namespace IBBoard.WarFoundry.API
{
	public delegate void ObjectChangedDelegate(WarFoundryObject oldValue, WarFoundryObject newValue);
	public delegate void ArmyChangedDelegate(Army oldValue, Army newValue);
	public delegate void GameSystemChangedDelegate(GameSystem oldValue, GameSystem newValue);
	public delegate void ObjectAddDelegate(WarFoundryObject val);
	public delegate void ObjectRemoveDelegate(WarFoundryObject val);	
	public delegate void UnitAddDelegate(Unit val);
	public delegate void UnitRemoveDelegate(Unit val);
	public delegate void ObjectUpdatedDelegate(WarFoundryObject val, string updatedValName);
	public delegate void DoubleValChangedDelegate(WarFoundryObject obj, double oldValue, double newValue);
	public delegate void FloatValChangedDelegate(WarFoundryObject obj, float oldValue, float newValue);
	public delegate void StringValChangedDelegate(WarFoundryObject obj, string oldValue, string newValue);
	public delegate void IntValChangedDelegate(WarFoundryObject obj, int oldValue, int newValue);
}