~z-man/armagetronad/0.4-armagetronad-ct-unified

« back to all changes in this revision

Viewing changes to src/engine/ePath.h

  • Committer: Voodoo
  • Date: 2011-12-22 16:07:45 UTC
  • Revision ID: erollet@yahoo.fr-20111222160745-o5p79fchl3e0dwk5
merge -r 1186..1363 lp:armagetronad

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
class ePath{
37
37
public:
38
38
#ifdef DEBUG
 
39
    void Render();  // renders this path
39
40
    static void RenderLast();  // renders the last found path
40
41
#endif
41
42
 
51
52
 
52
53
    void Clear();
53
54
 
 
55
    void Add(const eCoord&  point);
54
56
protected:
55
57
    tArray<eCoord> positions;
56
58
    tArray<eCoord> offsets;
57
59
    int            current;
58
60
 
59
61
    void Add(eHalfEdge     *edge);
60
 
    void Add(const eCoord&  point);
61
62
 
62
63
};
63
64