Project

General

Profile

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

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

1
package org.distorted.library;
2

    
3
///////////////////////////////////////////////////////////////////////////////////////////////////
4

    
5
class EffectQueueOther extends EffectQueue
6
  {
7
  private static final int NUM_UNIFORMS = 0;
8
  private static final int INDEX = EffectTypes.OTHER.ordinal();
9

    
10
///////////////////////////////////////////////////////////////////////////////////////////////////
11

    
12
  public EffectQueueOther(DistortedObject obj)
13
    {
14
    super(obj,NUM_UNIFORMS, INDEX );
15
    }
16

    
17
///////////////////////////////////////////////////////////////////////////////////////////////////
18
// There are no Uniforms, nothing to move
19

    
20
  protected void moveEffect(int index)
21
    {
22

    
23
    }
24

    
25
///////////////////////////////////////////////////////////////////////////////////////////////////
26

    
27
  synchronized void send()
28
    {
29

    
30
    }
31

    
32
///////////////////////////////////////////////////////////////////////////////////////////////////
33

    
34
  synchronized long add(EffectNames eln, String filename)
35
    {
36
    return 0;
37
    }
38
  }
(15-15/30)