This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public delegate int Formula1I(ref int result, int a); | |
private struct WeightedCallback<T> | |
{ | |
public int Weight; | |
public T Callback; | |
} | |
private static readonly Dictionary<string, List<WeightedCallback<Formula1I>>> FormulaAlters1I = new Dictionary<string, List<WeightedCallback<Formula1I>>>(); |