~landronimirc/supertux/editor-trunk

« back to all changes in this revision

Viewing changes to supertux-editor/LevelObjects/Badguys.cs

  • Committer: Jonas Kuemmerlin
  • Date: 2012-06-09 10:37:58 UTC
  • Revision ID: git-v1:f042f261202a9c1bbeb0390fd4e700759d6c8669
fixed bug #878 and the short fuse dispenser bug

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
 
65
65
[SupertuxObject("short_fuse", "images/creatures/short_fuse/short_fuse.sprite",
66
66
                Target = SupertuxObjectAttribute.Usage.LevelOnly)]
67
 
public sealed class ShortFuse : SimpleDirObject
 
67
public sealed class Short_Fuse : SimpleDirObject
68
68
{
69
 
        public ShortFuse() {
 
69
        public Short_Fuse() {
70
70
                Sprite = SpriteManager.Create("images/creatures/short_fuse/short_fuse.sprite");
71
71
                Sprite.Action = "left";
72
72
        }