~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to Templates/MyItem.cs

  • Committer: djsiegel at gmail
  • Date: 2007-11-07 19:51:21 UTC
  • Revision ID: djsiegel@gmail.com-20071107195121-v1niznt43hkai3o1
Added some template files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  MyItem.cs
 
2
 
 
3
using System;
 
4
using Do.Universe;
 
5
 
 
6
namespace MyCommandNamespace
 
7
{
 
8
 
 
9
        public class MyItem : IItem
 
10
        {
 
11
                
 
12
                public string Name {
 
13
                        get {
 
14
                                return "The name of the item.";
 
15
                        }
 
16
                }
 
17
                
 
18
                public string Description {
 
19
                        get {
 
20
                                return "A description of the item.";
 
21
                        }
 
22
                }
 
23
                
 
24
                public string Icon {
 
25
                        get {
 
26
                                return "my-item-icon";
 
27
                        }
 
28
                }
 
29
                
 
30
        }
 
31
}
 
 
b'\\ No newline at end of file'