/minild29

To get this branch, use:
bzr branch http://9ix.org/bzr/minild29

« back to all changes in this revision

Viewing changes to Dark.h

  • Committer: Josh C
  • Date: 2011-09-18 16:59:41 UTC
  • Revision ID: josh@9ix.org-20110918165941-waswg2xidvf0v04x
player and creature spawners in level editor

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    float const MAXSPEED;
46
46
    int const ACCELERATION;
47
47
    float const STALKSPEED;
 
48
    float const HUNTSPEED;
48
49
  };
49
50
 
50
51
  class Ping : public Entity
65
66
    DarkScene();
66
67
    void Begin();
67
68
    void Update();
 
69
    void HideSpawners();
 
70
    void ShowSpawners();
 
71
    void Spawn();
68
72
 
69
73
    LevelEditor *levelEditor;
70
74