﻿using System;
namespace ModestTree
{
    // This needs to be kept in sync with the PipelinePlatforms in pipeline
    [Flags]
    public enum AbScenePlatforms
    {
        None = 0,
        Pc = 1,
        Android = 2,
        WebGl = 4,
        Ios = 8,
        Wsa = 16,
        OculusQuest = 64,
        All = Pc | Android | WebGl | Ios | Wsa | OculusQuest,
    }
}
