~widelands-dev/widelands/trunk

« back to all changes in this revision

Viewing changes to data/tribes/buildings/productionsites/empire/marblemine/init.lua

  • Committer: The Widelands Bunnybot
  • Date: 2021-06-09 12:34:39 UTC
  • Revision ID: bunnybot@widelands.org-20210609123439-msgbw2sa8t49lcl6
Use shared_ptr for AddOnInfo (#4747)

(by Noordfrees)
99258816175fffcaa8e7cd135c04d0117f8c25c1

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
      planks = 1
31
31
   },
32
32
 
 
33
   animation_directory = dirname,
33
34
   animations = {
34
35
      idle = {
35
 
         pictures = path.list_files(dirname .. "idle_??.png"),
36
36
         hotspot = { 49, 49 },
37
37
      },
38
38
      working = {
39
 
         pictures = path.list_files(dirname .. "working_??.png"),
40
39
         hotspot = { 49, 49 },
41
40
         fps = 10
42
41
      },
43
42
      empty = {
44
 
         pictures = path.list_files(dirname .. "empty_??.png"),
45
43
         hotspot = { 49, 49 },
46
44
      },
47
45
   },