home *** CD-ROM | disk | FTP | other *** search
- class BubblefieldUnit
- {
- var _position;
- var _name;
- var _linkage;
- var _difficulty;
- var _depth;
- var _rotation;
- var _formalName;
- function BubblefieldUnit(givenName, givenLinkage, givenPos, givenDepth)
- {
- this._position = new Vector();
- this._name = givenName;
- this._linkage = givenLinkage;
- this._position._x = givenPos._x;
- this._position._y = givenPos._y;
- this._difficulty = 0;
- this._depth = givenDepth;
- this._rotation = 0;
- this._formalName = "";
- }
- }
-