Project

General

Profile

Download (1015 Bytes) Statistics
| Branch: | Revision:

library / src / main / java / org / distorted / library / EffectQueueOther.java @ 71887484

1 b3618cb5 Leszek Koltunski
package org.distorted.library;
2
3
///////////////////////////////////////////////////////////////////////////////////////////////////
4
5 71887484 Leszek Koltunski
class EffectQueueOther extends EffectQueue
6 b3618cb5 Leszek Koltunski
  {
7 71887484 Leszek Koltunski
  private static final int NUM_UNIFORMS = 0;
8
  private static final int INDEX = EffectTypes.OTHER.ordinal();
9 b3618cb5 Leszek Koltunski
10
///////////////////////////////////////////////////////////////////////////////////////////////////
11
12 d07f2950 Leszek Koltunski
  public EffectQueueOther(DistortedObject obj)
13 b3618cb5 Leszek Koltunski
    {
14 71887484 Leszek Koltunski
    super(obj,NUM_UNIFORMS, INDEX );
15 b3618cb5 Leszek Koltunski
    }
16
17
///////////////////////////////////////////////////////////////////////////////////////////////////
18 71887484 Leszek Koltunski
// There are no Uniforms, nothing to move
19 b3618cb5 Leszek Koltunski
20 71887484 Leszek Koltunski
  protected void moveEffect(int index)
21 b3618cb5 Leszek Koltunski
    {
22
23
    }
24
25
///////////////////////////////////////////////////////////////////////////////////////////////////
26
27 71887484 Leszek Koltunski
  synchronized void send()
28 b3618cb5 Leszek Koltunski
    {
29
30
    }
31
32
///////////////////////////////////////////////////////////////////////////////////////////////////
33
34
  synchronized long add(EffectNames eln, String filename)
35
    {
36
    return 0;
37
    }
38
  }