/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:12:57 UTC
  • Revision ID: josh@9ix.org-20110918161257-zshzdmi0e62idum1
some more stalk logic

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    float aiTime;
36
36
    float noiseTime;
37
37
    std::string state;
38
 
    float maxspeed;
39
38
 
40
39
    SpriteAnimation *sprite;
41
40
    AudioDeck *skitter1;
42
41
    AudioAsset *alert;
43
 
    AudioDeck *sniff;
44
 
    AudioAsset *freakout;
 
42
    AudioAsset *stalk;
45
43
 
46
44
    int const FRICTION;
 
45
    float const MAXSPEED;
47
46
    int const ACCELERATION;
48
 
    float const DEFAULT_MAXSPEED;
49
47
    float const STALKSPEED;
50
 
    //float const HUNTSPEED;
 
48
    float const HUNTSPEED;
51
49
  };
52
50
 
53
51
  class Ping : public Entity
68
66
    DarkScene();
69
67
    void Begin();
70
68
    void Update();
71
 
    void HideSpawners();
72
 
    void ShowSpawners();
73
 
    void Spawn();
74
69
 
75
70
    LevelEditor *levelEditor;
76
71