~extremepopcorn/dhlib/dhlib_ep

« back to all changes in this revision

Viewing changes to app-graft/graft/GraftXMLItem.mhx

  • Committer: edA-qa mort-ora-y
  • Date: 2010-02-16 05:36:32 UTC
  • Revision ID: eda-qa@disemia.com-20100216053632-60lt7fndfi3fgblw
first

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* <license>
 
2
 * This file is part of the dis-Emi-A HaXe Library. Copyright © edA-qa mort-ora-y
 
3
 * For full copyright and license information please refer to doc/license.txt.
 
4
 * </license> 
 
5
 */
 
6
package graft;
 
7
 
 
8
class GraftXMLItem
 
9
{
 
10
        public var filename : String;
 
11
        public var name : String;
 
12
        public var resource : String;
 
13
        
 
14
        public function new()
 
15
        {
 
16
                filename = "";
 
17
                name = "";
 
18
                resource = "";
 
19
        }
 
20
}