avm2: MouseCursorData _private fields should be private

This commit is contained in:
Nathan Adams 2024-07-28 22:52:21 +02:00
parent cc1185182d
commit b7e78f4ca6
1 changed files with 3 additions and 3 deletions

View File

@ -13,13 +13,13 @@ package flash.ui
public final class MouseCursorData
{
// A Vector of BitmapData objects containing the cursor image or images.
public var _data: Vector.<BitmapData>;
private var _data: Vector.<BitmapData>;
// The frame rate for animating the cursor.
public var _frameRate: Number;
private var _frameRate: Number;
// The hot spot of the cursor in pixels.
public var _hotSpot: Point = new Point(0,0);
private var _hotSpot: Point = new Point(0,0);
public function get data():Vector.<BitmapData>
{