aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/IntermediateRepresentation/Multiplier.cs
blob: d6bc7d9947500fa781bd242a5828ccd0933111c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace ARMeilleure.IntermediateRepresentation
{
    enum Multiplier
    {
        x1 = 0,
        x2 = 1,
        x4 = 2,
        x8 = 3,
        x16 = 4
    }
}