1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-28 07:19:09 +02:00
MLEM/MLEM/Formatting/FormattingCodeCollection.cs
2020-02-03 03:04:13 +01:00

18 lines
433 B
C#

using System.Collections.Generic;
using Microsoft.Xna.Framework;
namespace MLEM.Formatting {
public class FormattingCodeCollection : Dictionary<int, FormattingCode> {
public void Update(GameTime time) {
foreach (var code in this.Values)
code.Update(time);
}
public void Reset() {
foreach (var code in this.Values)
code.Reset();
}
}
}