~angus.helm/terrella/trunk

« back to all changes in this revision

Viewing changes to Terrella/Battle/Map.cs

  • Committer: Angus Helm
  • Date: 2010-10-18 05:32:26 UTC
  • Revision ID: angus@angushelm.com-20101018053226-4cj2s8odk4rungle
Got basic battle map animation working.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
        public Map()
39
39
        {
40
 
            Actors = new List<Actor>();
 
40
            Actors = new List<BattleMapActor>();
41
41
        }
42
42
 
43
43
        public Tile[][] terrain { get; set; }
44
 
        public List<Actor> Actors { get; private set; }
 
44
        public List<BattleMapActor> Actors { get; private set; }
45
45
        public int Width { get; set; }
46
46
        public int Height { get; set; }
47
47