Ejemplo n.º 1
0
 public void Add(FreezeContext context)
 {
     _freezeContext |= context;
 }
Ejemplo n.º 2
0
    public void Remove(FreezeContext context)
    {
        FreezeContext inverted = ~context;

        _freezeContext = ~(inverted | context);
    }
Ejemplo n.º 3
0
 public GameFreezeMask(FreezeContext context) : this()
 {
     _freezeContext = context;
 }