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