﻿using System;

namespace Oni.Objects
{
    [Flags]
    internal enum ParticleFlags : ushort
    {
        None = 0x00,
        NotInitiallyCreated = 0x02,
    }
}
