diff --git a/Core/cursor_behaviour.gd b/Core/cursor_behaviour.gd
new file mode 100644
index 0000000..46768bf
--- /dev/null
+++ b/Core/cursor_behaviour.gd
@@ -0,0 +1,11 @@
+extends Node
+## Handle all the cursor appareance related stuff.
+
+# Called when the node enters the scene tree for the first time.
+func _ready() -> void:
+ pass # Replace with function body.
+
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+func _process(delta: float) -> void:
+ pass
diff --git a/Core/cursor_behaviour.gd.uid b/Core/cursor_behaviour.gd.uid
new file mode 100644
index 0000000..069e19b
--- /dev/null
+++ b/Core/cursor_behaviour.gd.uid
@@ -0,0 +1 @@
+uid://d2f3kt810ncsa
diff --git a/Core/player.gd b/Core/player.gd
index 2a34c72..17f101b 100644
--- a/Core/player.gd
+++ b/Core/player.gd
@@ -1,4 +1,5 @@
extends Node3D
+class_name Player
#region Declarations
@export_category("Speed")
@onready var move_speed: float = ProjectSettings.get_setting("game/controls/camera_move_speed",20.0)
@@ -6,19 +7,21 @@ extends Node3D
@export_category("Limits")
@export_range(-10,10,1) var zoom_min: float = -4
@export_range(11,50,1) var zoom_max: float = 20
-@export_range(0,0.95,0.01) var zoom_speed_damp: float = 0.5
+@export_range(0,0.95,0.01) var zoom_speed_damp: float = ProjectSettings.get_setting("game/controls/camera_zoom_damp",0.85)
@export_range(0,32,4) var edge_scrolling_margin: int = ProjectSettings.get_setting("game/controls/edge_scrolling_margin",8)
@onready var edge_scrolling_speed: float = ProjectSettings.get_setting("game/controls/edge_scrolling_speed",25.0)
-@onready var socket: Node3D = $camera_point
-@onready var cam : Camera3D = %camera_player
+@onready var cam: Camera3D = %camera_player
-var zoom_direction : float = 0.0 # if different than zero, zoom is happening
+var zoom_direction: float = 0.0 # if different than zero, zoom is happening
var move_disabled:bool = false
var zoom_disabled:bool = false
var edge_scroll_disabled:bool = ProjectSettings.get_setting("game/controls/edge_scrolling_disabled",false)
+var invert_rotation_x:bool = ProjectSettings.get_setting("game/controls/invert_cam_rotation_x",false)
+var invert_rotation_y:bool = ProjectSettings.get_setting("game/controls/invert_cam_rotation_y",false)
var rotation_mode:bool = false
+var rotation_damp:float = 0.01
#endregion
@@ -32,16 +35,27 @@ func _process(delta: float) -> void:
cam_zoom(delta)
cam_edge_scroll(delta)
cam_rotation(delta)
- if rotation_mode:
- print(Input.get_last_mouse_velocity())
- rotation.y += Input.get_last_mouse_velocity().x / 10000 * -1 #TODO: REMOVE MAGIC NUMBERS
- print(rotation.z + Input.get_last_mouse_velocity().y / 10000 * -1)
- rotation.z = clamp(rotation.z + Input.get_last_mouse_velocity().y / 10000 * -1,-0.75,0.35)
+
+
+func _notification(what: int):
+ if what == NOTIFICATION_APPLICATION_FOCUS_OUT:
+ print("focus out!")
+ #get_tree().paused = true
+ edge_scroll_disabled = true
+ move_disabled = true
+ if what == NOTIFICATION_APPLICATION_FOCUS_IN:
+ print("focus in!")
+ #get_tree().paused = false
+ edge_scroll_disabled = false
+ move_disabled = false
+ if what == NOTIFICATION_WM_MOUSE_ENTER:
+ print("focus in!")
func _unhandled_input(event: InputEvent) -> void:
if event.is_action("scroll_up"):
zoom_direction = -1
+ print("scroll")
if event.is_action("scroll_down"):
zoom_direction = 1
if event.is_action_pressed("rotation_mode"):
@@ -50,6 +64,8 @@ func _unhandled_input(event: InputEvent) -> void:
if event.is_action_released("rotation_mode"):
rotation_mode = false
Input.mouse_mode = Input.MOUSE_MODE_CONFINED
+ if event.as_text() == "Escape":
+ get_tree().quit()
#region Getter
@@ -58,8 +74,10 @@ func get_mouse_position() -> Vector2:
## multiplicator for movement speed, based on zoom level
-func get_zoom_factor() -> float:
- return remap(cam.position.z,zoom_min,zoom_max,0.1,2.0)
+## [br][br]
+## Return a remapped float between [param _min] and [param _max]
+func get_zoom_factor(_min:=0.1,_max:=2.0) -> float:
+ return remap(cam.position.z,zoom_min,zoom_max,_min,_max)
#endregion
@@ -74,7 +92,8 @@ func cam_move(delta:float) -> void:
if Input.is_action_pressed("cam_left"): velocity_direction -= transform.basis.z
if Input.is_action_pressed("cam_right"): velocity_direction += transform.basis.z
- position += velocity_direction.normalized() * delta * move_speed * get_zoom_factor()
+ position.x += velocity_direction.normalized().x * delta * move_speed * get_zoom_factor()
+ position.z += velocity_direction.normalized().z * delta * move_speed * get_zoom_factor()
## Controls the zoom of the player camera
@@ -84,10 +103,11 @@ func cam_move(delta:float) -> void:
func cam_zoom(delta:float) -> void:
if zoom_disabled:return
- var new_zoom: float = clamp(cam.position.z + zoom_speed * zoom_direction * delta,zoom_min,zoom_max)
- cam.position.z = new_zoom
-
- zoom_direction *= zoom_speed_damp #Smooth the deceleration
+ var new_zoom: float = clamp(cam.position.z + (zoom_speed * zoom_direction * delta),zoom_min,zoom_max)
+ if new_zoom != cam.position.z:
+ print("new zoom : ", new_zoom, " because zoom_direction = ",zoom_direction)
+ cam.position.z = new_zoom
+ zoom_direction *= zoom_speed_damp #Smooth the deceleration
func cam_edge_scroll(delta:float) -> void:
@@ -112,5 +132,7 @@ func cam_edge_scroll(delta:float) -> void:
func cam_rotation(delta:float) -> void:
- pass
+ if rotation_mode:
+ rotation.y += Input.get_last_mouse_velocity().x * delta * rotation_damp * (-1 if invert_rotation_x else 1) #TODO: REMOVE MAGIC NUMBERS
+ %camera_rot.rotation.z = clamp(%camera_rot.rotation.z + Input.get_last_mouse_velocity().y * rotation_damp * delta * (-1 if invert_rotation_y else 1),-0.75,0.35) #TODO: REMOVE MAGIC NUMBERS
#endregion
diff --git a/Core/player.tscn b/Core/player.tscn
index 1da3ab1..e6d5fb5 100644
--- a/Core/player.tscn
+++ b/Core/player.tscn
@@ -1,25 +1,37 @@
-[gd_scene load_steps=4 format=3 uid="uid://djj1fc8qm10t6"]
+[gd_scene load_steps=5 format=3 uid="uid://djj1fc8qm10t6"]
[ext_resource type="Script" uid="uid://c23s1syo7wjm8" path="res://Core/player.gd" id="1_e571r"]
+[ext_resource type="Script" uid="uid://d2f3kt810ncsa" path="res://Core/cursor_behaviour.gd" id="2_ipmo0"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_e571r"]
blend_mode = 1
no_depth_test = true
-albedo_color = Color(1, 0, 0.15294115, 1)
+albedo_color = Color(1, 0, 0.152941, 1)
proximity_fade_enabled = true
proximity_fade_distance = 2.0
[sub_resource type="SphereMesh" id="SphereMesh_ipmo0"]
+lightmap_size_hint = Vector2i(17, 9)
material = SubResource("StandardMaterial3D_e571r")
+flip_faces = true
+height = 0.5
+is_hemisphere = true
[node name="player_root" type="Node3D"]
script = ExtResource("1_e571r")
-[node name="camera_point" type="Node3D" parent="."]
-transform = Transform3D(-4.371139e-08, 0.57357645, -0.81915206, 0, 0.81915206, 0.57357645, 1, 2.5071824e-08, -3.5806274e-08, -4.4828167, 2.9061706, -1.0852736e-07)
+[node name="camera_rot" type="Node3D" parent="."]
+unique_name_in_owner = true
-[node name="camera_player" type="Camera3D" parent="camera_point"]
+[node name="camera_point" type="Node3D" parent="camera_rot"]
+unique_name_in_owner = true
+transform = Transform3D(-4.37114e-08, 0.573576, -0.819152, 0, 0.819152, 0.573576, 1, 2.50718e-08, -3.58063e-08, -4.48282, 2.90617, -1.08527e-07)
+
+[node name="camera_player" type="Camera3D" parent="camera_rot/camera_point"]
unique_name_in_owner = true
[node name="MeshInstance3D" type="MeshInstance3D" parent="."]
mesh = SubResource("SphereMesh_ipmo0")
+
+[node name="CursorComponent" type="Node" parent="."]
+script = ExtResource("2_ipmo0")
diff --git a/Maps/gym.tscn b/Maps/gym.tscn
index 75029a2..6b71751 100644
--- a/Maps/gym.tscn
+++ b/Maps/gym.tscn
@@ -11,10 +11,10 @@
[ext_resource type="VoxelGIData" uid="uid://cubwphu04tyr4" path="res://generated/gym.VoxelGI_data.res" id="9_ipipj"]
[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_vkxe1"]
-sky_top_color = Color(0.29998082, 0.7019671, 0.7430855, 1)
-sky_horizon_color = Color(0.67294115, 0.76902217, 0.7743324, 1)
-ground_bottom_color = Color(0.08728691, 0.06962478, 0.049747247, 1)
-ground_horizon_color = Color(0.67294115, 0.76902217, 0.7743324, 1)
+sky_top_color = Color(0.299981, 0.701967, 0.743086, 1)
+sky_horizon_color = Color(0.672941, 0.769022, 0.774332, 1)
+ground_bottom_color = Color(0.0872869, 0.0696248, 0.0497472, 1)
+ground_horizon_color = Color(0.672941, 0.769022, 0.774332, 1)
energy_multiplier = 2.0
[sub_resource type="Sky" id="Sky_607fo"]
@@ -45,11 +45,11 @@ albedo_texture = ExtResource("6_anror")
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_aq7w3"]
resource_local_to_scene = true
resource_name = "proto_rigid"
-albedo_color = Color(0.8515964, 0.5950552, 0.037019093, 1)
+albedo_color = Color(0.851596, 0.595055, 0.0370191, 1)
albedo_texture = ExtResource("6_anror")
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_afokq"]
-points = PackedVector3Array(-0.9539594, 0.07707009, -0.92311066, 0.9954823, 1.9021704, 0.90234715, 0.9539307, 1.9229443, 0.92312497, 0.9022426, 1.902107, -0.9956503, -0.9023408, 1.9953208, 0.9023384, 0.9023113, 0.004663769, 0.9023524, -0.9022721, 0.09790697, 0.99563485, 0.9954824, 0.09782952, -0.90234715, -0.99551034, 1.9021565, -0.90233314, 0.9023113, 1.9953362, -0.9023524, -0.99551034, 0.097843505, 0.90233314, 0.9022426, 1.902107, 0.9956503, -0.9022721, 0.09790697, -0.99563485, -0.9023408, 0.004679235, -0.9023384, 0.9022426, 0.097892955, -0.99565035, -0.9022721, 1.902093, -0.99563485, 0.9022426, 0.097892955, 0.99565035, -0.9022721, 1.902093, 0.99563485, 0.9023113, 0.004663769, -0.9023524, -0.9023408, 1.9953208, -0.9023384, -0.9023408, 0.004679235, 0.9023384, 0.9954824, 0.09782952, 0.90234715, 0.9954823, 1.9021704, -0.90234715, -0.99551034, 1.9021565, 0.90233314, 0.9023113, 1.9953362, 0.9023524, -0.99551034, 0.097843505, -0.90233314)
+points = PackedVector3Array(-0.953959, 0.0770701, -0.923111, 0.995482, 1.90217, 0.902347, 0.953931, 1.92294, 0.923125, 0.902243, 1.90211, -0.99565, -0.902341, 1.99532, 0.902338, 0.902311, 0.00466377, 0.902352, -0.902272, 0.097907, 0.995635, 0.995482, 0.0978295, -0.902347, -0.99551, 1.90216, -0.902333, 0.902311, 1.99534, -0.902352, -0.99551, 0.0978435, 0.902333, 0.902243, 1.90211, 0.99565, -0.902272, 0.097907, -0.995635, -0.902341, 0.00467924, -0.902338, 0.902243, 0.097893, -0.99565, -0.902272, 1.90209, -0.995635, 0.902243, 0.097893, 0.99565, -0.902272, 1.90209, 0.995635, 0.902311, 0.00466377, -0.902352, -0.902341, 1.99532, -0.902338, -0.902341, 0.00467924, 0.902338, 0.995482, 0.0978295, 0.902347, 0.995482, 1.90217, -0.902347, -0.99551, 1.90216, 0.902333, 0.902311, 1.99534, 0.902352, -0.99551, 0.0978435, -0.902333)
[node name="Gym" type="Node"]
@@ -57,7 +57,7 @@ points = PackedVector3Array(-0.9539594, 0.07707009, -0.92311066, 0.9954823, 1.90
environment = SubResource("Environment_lefpg")
[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."]
-transform = Transform3D(-0.8660254, -0.43301278, 0.25, 0, 0.49999997, 0.86602545, -0.50000006, 0.75, -0.43301266, 0, 0, 0)
+transform = Transform3D(-0.866025, -0.433013, 0.25, 0, 0.5, 0.866025, -0.5, 0.75, -0.433013, 0, 0, 0)
light_energy = 1.3
shadow_enabled = true
directional_shadow_max_distance = 500.0
@@ -69,43 +69,41 @@ use_collision = true
mesh = SubResource("BoxMesh_afokq")
[node name="dummy" parent="." instance=ExtResource("2_40027")]
-transform = Transform3D(0.23293716, 0, -0.8693332, 0, 0.9, 0, 0.8693332, 0, 0.23293716, 1.636292, 0, 5.282063)
+transform = Transform3D(0.232937, 0, -0.869333, 0, 0.9, 0, 0.869333, 0, 0.232937, 1.63629, 0, 5.28206)
[node name="BarrelA" type="MeshInstance3D" parent="."]
-transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.46089, 0.4690876, -5.6751404)
+transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.46089, 0.469088, -5.67514)
material_override = SubResource("StandardMaterial3D_mqp7f")
mesh = ExtResource("3_afokq")
[node name="BoxA" type="MeshInstance3D" parent="."]
-transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 4.6958694, 0, 0.47373772)
+transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 4.69587, 0, 0.473738)
mesh = ExtResource("4_mqp7f")
[node name="BoxB" type="MeshInstance3D" parent="."]
-transform = Transform3D(1.545552, 0, -1.7033111, 0, 2.3, 0, 1.7033111, 0, 1.545552, 6.5613637, 0, -3.459313)
+transform = Transform3D(1.54555, 0, -1.70331, 0, 2.3, 0, 1.70331, 0, 1.54555, 6.56136, 0, -3.45931)
mesh = ExtResource("5_ipipj")
[node name="CubePrototypeSmall2" type="MeshInstance3D" parent="."]
-transform = Transform3D(0.71254057, 0, -0.7016309, 0, 1, 0, 0.7016309, 0, 0.71254057, 0.19311635, 4.7683716e-07, 6.7632627)
+transform = Transform3D(0.712541, 0, -0.701631, 0, 1, 0, 0.701631, 0, 0.712541, 0.193116, 4.76837e-07, 6.76326)
mesh = ExtResource("7_f8cpb")
[node name="RigidBody3D2" type="RigidBody3D" parent="."]
[node name="CubePrototypeSmall" type="MeshInstance3D" parent="RigidBody3D2"]
-transform = Transform3D(0.9493213, 0, 0.31430727, -0.16992609, 0.8412561, 0.5132381, -0.2644129, -0.54063684, 0.79862237, -5.197, 6.3825016, -12.265)
+transform = Transform3D(0.949321, 0, 0.314307, -0.169926, 0.841256, 0.513238, -0.264413, -0.540637, 0.798622, -5.197, 6.3825, -12.265)
material_override = SubResource("StandardMaterial3D_aq7w3")
mesh = ExtResource("7_f8cpb")
skeleton = NodePath("../../root/@EditorNode@20441/@Panel@14/@VBoxContainer@15/DockHSplitLeftL/DockHSplitLeftR/DockHSplitMain/@VBoxContainer@26/DockVSplitCenter/@VSplitContainer@62/@VBoxContainer@63/@EditorMainScreen@103/MainScreen/@CanvasItemEditor@10870/@VSplitContainer@10515/@HSplitContainer@10517/@HSplitContainer@10519/@Control@10520/@SubViewportContainer@10521/@SubViewport@10522/Gym")
[node name="CollisionShape3D" type="CollisionShape3D" parent="RigidBody3D2"]
-transform = Transform3D(0.9493213, 0, 0.31430727, -0.16992609, 0.8412561, 0.5132381, -0.2644129, -0.54063684, 0.79862237, -5.197, 6.3825016, -12.265)
+transform = Transform3D(0.949321, 0, 0.314307, -0.169926, 0.841256, 0.513238, -0.264413, -0.540637, 0.798622, -5.197, 6.3825, -12.265)
shape = SubResource("ConvexPolygonShape3D_afokq")
[node name="player_root" parent="." instance=ExtResource("8_mqp7f")]
-transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.6329784, 0, 0)
-zoom_min = -4.0
-zoom_speed_damp = 0.85
+transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.528881, 0, 0)
[node name="VoxelGI" type="VoxelGI" parent="."]
-transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16.096863, 9.957031, 31.13272)
-size = Vector3(92.730835, 66.615234, 140.03693)
+transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16.0969, 9.95703, 31.1327)
+size = Vector3(92.7308, 66.6152, 140.037)
data = ExtResource("9_ipipj")
diff --git a/Packs/Kaykit-Proto/materials/floor.tres b/Packs/Kaykit-Proto/materials/floor.tres
index 569293a..dbdd212 100644
--- a/Packs/Kaykit-Proto/materials/floor.tres
+++ b/Packs/Kaykit-Proto/materials/floor.tres
@@ -3,7 +3,7 @@
[ext_resource type="Texture2D" uid="uid://b1y8uw4vyffis" path="res://Packs/Kaykit-Proto/textures/prototypebits_texture_floor.png" id="1_de2bv"]
[resource]
-albedo_color = Color(0.70796657, 0.7079665, 0.7079665, 0)
+albedo_color = Color(0.707967, 0.707967, 0.707967, 0)
albedo_texture = ExtResource("1_de2bv")
metallic = 0.55
metallic_specular = 0.36
diff --git a/Packs/Kaykit-Proto/new_shader.tres b/Packs/Kaykit-Proto/new_shader.tres
index 22ede19..7ef41de 100644
--- a/Packs/Kaykit-Proto/new_shader.tres
+++ b/Packs/Kaykit-Proto/new_shader.tres
@@ -2,7 +2,7 @@
[resource]
code = "shader_type spatial;
-render_mode blend_mix, depth_draw_opaque, depth_test_default, cull_back, diffuse_lambert, specular_schlick_ggx;
+render_mode blend_mix, depth_draw_opaque, cull_back, diffuse_lambert, specular_schlick_ggx;
diff --git a/Packs/Kenney-cursors/Basic/arrow_e.svg b/Packs/Kenney-cursors/Basic/arrow_e.svg
new file mode 100644
index 0000000..56f3a7f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_e.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/arrow_e.svg.import b/Packs/Kenney-cursors/Basic/arrow_e.svg.import
new file mode 100644
index 0000000..464832c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_e.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dmopgf0y3k7y6"
+path="res://.godot/imported/arrow_e.svg-e6336d8259f44192b5e4977c27383c04.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/arrow_e.svg"
+dest_files=["res://.godot/imported/arrow_e.svg-e6336d8259f44192b5e4977c27383c04.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/arrow_n.svg b/Packs/Kenney-cursors/Basic/arrow_n.svg
new file mode 100644
index 0000000..f6dfe6c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_n.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/arrow_n.svg.import b/Packs/Kenney-cursors/Basic/arrow_n.svg.import
new file mode 100644
index 0000000..499f202
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_n.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c6wdu38poxjsf"
+path="res://.godot/imported/arrow_n.svg-a6c014e72772ceae15c7360f7bd5589e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/arrow_n.svg"
+dest_files=["res://.godot/imported/arrow_n.svg-a6c014e72772ceae15c7360f7bd5589e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/arrow_ne.svg b/Packs/Kenney-cursors/Basic/arrow_ne.svg
new file mode 100644
index 0000000..5cd5558
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_ne.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/arrow_ne.svg.import b/Packs/Kenney-cursors/Basic/arrow_ne.svg.import
new file mode 100644
index 0000000..bf1b6f6
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_ne.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cgol3cflunuto"
+path="res://.godot/imported/arrow_ne.svg-e31627c8a78d541a11a057fea2acfb3e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/arrow_ne.svg"
+dest_files=["res://.godot/imported/arrow_ne.svg-e31627c8a78d541a11a057fea2acfb3e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/arrow_nw.svg b/Packs/Kenney-cursors/Basic/arrow_nw.svg
new file mode 100644
index 0000000..b26e09f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_nw.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/arrow_nw.svg.import b/Packs/Kenney-cursors/Basic/arrow_nw.svg.import
new file mode 100644
index 0000000..63ea2ee
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_nw.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bfgsl8e0n2qyh"
+path="res://.godot/imported/arrow_nw.svg-159cd142d796d074daf6bd62305efb76.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/arrow_nw.svg"
+dest_files=["res://.godot/imported/arrow_nw.svg-159cd142d796d074daf6bd62305efb76.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/arrow_s.svg b/Packs/Kenney-cursors/Basic/arrow_s.svg
new file mode 100644
index 0000000..4aa6a16
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_s.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/arrow_s.svg.import b/Packs/Kenney-cursors/Basic/arrow_s.svg.import
new file mode 100644
index 0000000..42f2af4
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_s.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://crrf7w3edhd8f"
+path="res://.godot/imported/arrow_s.svg-dee07a4bc00664c449347930d2c1ddf9.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/arrow_s.svg"
+dest_files=["res://.godot/imported/arrow_s.svg-dee07a4bc00664c449347930d2c1ddf9.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/arrow_se.svg b/Packs/Kenney-cursors/Basic/arrow_se.svg
new file mode 100644
index 0000000..28d933b
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_se.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/arrow_se.svg.import b/Packs/Kenney-cursors/Basic/arrow_se.svg.import
new file mode 100644
index 0000000..d3ae030
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_se.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bcqiv0v0fihft"
+path="res://.godot/imported/arrow_se.svg-8984fec68c6d637995abf40a713f069d.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/arrow_se.svg"
+dest_files=["res://.godot/imported/arrow_se.svg-8984fec68c6d637995abf40a713f069d.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/arrow_sw.svg b/Packs/Kenney-cursors/Basic/arrow_sw.svg
new file mode 100644
index 0000000..f5758f5
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_sw.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/arrow_sw.svg.import b/Packs/Kenney-cursors/Basic/arrow_sw.svg.import
new file mode 100644
index 0000000..529ae53
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_sw.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dranhjvfuvkao"
+path="res://.godot/imported/arrow_sw.svg-50adb8bccfe647c600b49dc57d7ccbb6.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/arrow_sw.svg"
+dest_files=["res://.godot/imported/arrow_sw.svg-50adb8bccfe647c600b49dc57d7ccbb6.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/arrow_w.svg b/Packs/Kenney-cursors/Basic/arrow_w.svg
new file mode 100644
index 0000000..f8e2422
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_w.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/arrow_w.svg.import b/Packs/Kenney-cursors/Basic/arrow_w.svg.import
new file mode 100644
index 0000000..33b624b
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/arrow_w.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://d0h30h78eh7r4"
+path="res://.godot/imported/arrow_w.svg-53af8828f743f56b2b795de7e74d3575.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/arrow_w.svg"
+dest_files=["res://.godot/imported/arrow_w.svg-53af8828f743f56b2b795de7e74d3575.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/boot.svg b/Packs/Kenney-cursors/Basic/boot.svg
new file mode 100644
index 0000000..16b36d1
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/boot.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/boot.svg.import b/Packs/Kenney-cursors/Basic/boot.svg.import
new file mode 100644
index 0000000..6c36496
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/boot.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bapmgfjhb8ydc"
+path="res://.godot/imported/boot.svg-413149d11d4e1525e0b2dca206d24c32.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/boot.svg"
+dest_files=["res://.godot/imported/boot.svg-413149d11d4e1525e0b2dca206d24c32.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/bracket_a_horizontal.svg b/Packs/Kenney-cursors/Basic/bracket_a_horizontal.svg
new file mode 100644
index 0000000..5440ef9
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/bracket_a_horizontal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/bracket_a_horizontal.svg.import b/Packs/Kenney-cursors/Basic/bracket_a_horizontal.svg.import
new file mode 100644
index 0000000..bbe30ed
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/bracket_a_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dfquyl0hivq6v"
+path="res://.godot/imported/bracket_a_horizontal.svg-d28a50b9b5e48ffb42736e5942688eb1.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/bracket_a_horizontal.svg"
+dest_files=["res://.godot/imported/bracket_a_horizontal.svg-d28a50b9b5e48ffb42736e5942688eb1.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/bracket_a_vertical.svg b/Packs/Kenney-cursors/Basic/bracket_a_vertical.svg
new file mode 100644
index 0000000..ec220eb
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/bracket_a_vertical.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/bracket_a_vertical.svg.import b/Packs/Kenney-cursors/Basic/bracket_a_vertical.svg.import
new file mode 100644
index 0000000..6109bb9
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/bracket_a_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dvdlc1mwvh0fc"
+path="res://.godot/imported/bracket_a_vertical.svg-b90a7d0a635267e3e536a56ef98be8c7.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/bracket_a_vertical.svg"
+dest_files=["res://.godot/imported/bracket_a_vertical.svg-b90a7d0a635267e3e536a56ef98be8c7.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/bracket_b_horizontal.svg b/Packs/Kenney-cursors/Basic/bracket_b_horizontal.svg
new file mode 100644
index 0000000..bbcdf2f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/bracket_b_horizontal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/bracket_b_horizontal.svg.import b/Packs/Kenney-cursors/Basic/bracket_b_horizontal.svg.import
new file mode 100644
index 0000000..ee30b91
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/bracket_b_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c03wm17yjli2u"
+path="res://.godot/imported/bracket_b_horizontal.svg-6f5a6fad6bdf13e27a17fdc58d9e2b7b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/bracket_b_horizontal.svg"
+dest_files=["res://.godot/imported/bracket_b_horizontal.svg-6f5a6fad6bdf13e27a17fdc58d9e2b7b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/bracket_b_vertical.svg b/Packs/Kenney-cursors/Basic/bracket_b_vertical.svg
new file mode 100644
index 0000000..f7461f9
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/bracket_b_vertical.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/bracket_b_vertical.svg.import b/Packs/Kenney-cursors/Basic/bracket_b_vertical.svg.import
new file mode 100644
index 0000000..4adcb1a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/bracket_b_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dv6uqolumpoe"
+path="res://.godot/imported/bracket_b_vertical.svg-bbfc8e48d77c4952ed4d1f5a6798007f.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/bracket_b_vertical.svg"
+dest_files=["res://.godot/imported/bracket_b_vertical.svg-bbfc8e48d77c4952ed4d1f5a6798007f.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/busy_circle.svg b/Packs/Kenney-cursors/Basic/busy_circle.svg
new file mode 100644
index 0000000..0cd1b6d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/busy_circle.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/busy_circle.svg.import b/Packs/Kenney-cursors/Basic/busy_circle.svg.import
new file mode 100644
index 0000000..10ad55a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/busy_circle.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bxvg7t4lac4ec"
+path="res://.godot/imported/busy_circle.svg-3c37c19b256dcd1ce690e106069b92fb.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/busy_circle.svg"
+dest_files=["res://.godot/imported/busy_circle.svg-3c37c19b256dcd1ce690e106069b92fb.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/busy_circle_fade.svg b/Packs/Kenney-cursors/Basic/busy_circle_fade.svg
new file mode 100644
index 0000000..ba18614
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/busy_circle_fade.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/busy_circle_fade.svg.import b/Packs/Kenney-cursors/Basic/busy_circle_fade.svg.import
new file mode 100644
index 0000000..ca86d72
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/busy_circle_fade.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cnj2nmhveyenh"
+path="res://.godot/imported/busy_circle_fade.svg-cd835d976c60dcd2d1a7e46a04d57e03.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/busy_circle_fade.svg"
+dest_files=["res://.godot/imported/busy_circle_fade.svg-cd835d976c60dcd2d1a7e46a04d57e03.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/busy_hourglass.svg b/Packs/Kenney-cursors/Basic/busy_hourglass.svg
new file mode 100644
index 0000000..a553b8f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/busy_hourglass.svg
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/busy_hourglass.svg.import b/Packs/Kenney-cursors/Basic/busy_hourglass.svg.import
new file mode 100644
index 0000000..5edc2bf
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/busy_hourglass.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b8wbqf0olv5qe"
+path="res://.godot/imported/busy_hourglass.svg-9b227ed6e8b295a87679823b673bd6ad.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/busy_hourglass.svg"
+dest_files=["res://.godot/imported/busy_hourglass.svg-9b227ed6e8b295a87679823b673bd6ad.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/busy_hourglass_outline.svg b/Packs/Kenney-cursors/Basic/busy_hourglass_outline.svg
new file mode 100644
index 0000000..931da6e
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/busy_hourglass_outline.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/busy_hourglass_outline.svg.import b/Packs/Kenney-cursors/Basic/busy_hourglass_outline.svg.import
new file mode 100644
index 0000000..25b3a9e
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/busy_hourglass_outline.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c65q2akd4a3jk"
+path="res://.godot/imported/busy_hourglass_outline.svg-6e25f2ccc2d2e286eb025e87f496e922.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/busy_hourglass_outline.svg"
+dest_files=["res://.godot/imported/busy_hourglass_outline.svg-6e25f2ccc2d2e286eb025e87f496e922.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/busy_hourglass_outline_detail.svg b/Packs/Kenney-cursors/Basic/busy_hourglass_outline_detail.svg
new file mode 100644
index 0000000..3de0a9c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/busy_hourglass_outline_detail.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/busy_hourglass_outline_detail.svg.import b/Packs/Kenney-cursors/Basic/busy_hourglass_outline_detail.svg.import
new file mode 100644
index 0000000..85512b8
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/busy_hourglass_outline_detail.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dvx77hwo6fxqj"
+path="res://.godot/imported/busy_hourglass_outline_detail.svg-63f0ea67f7ab6fcd2060494a642aca4b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/busy_hourglass_outline_detail.svg"
+dest_files=["res://.godot/imported/busy_hourglass_outline_detail.svg-63f0ea67f7ab6fcd2060494a642aca4b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/cross_large.svg b/Packs/Kenney-cursors/Basic/cross_large.svg
new file mode 100644
index 0000000..a365edc
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cross_large.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/cross_large.svg.import b/Packs/Kenney-cursors/Basic/cross_large.svg.import
new file mode 100644
index 0000000..e97fd9c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cross_large.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cuqnw4ibb6mja"
+path="res://.godot/imported/cross_large.svg-94b7dc2f84571c49c11c98672da65d27.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/cross_large.svg"
+dest_files=["res://.godot/imported/cross_large.svg-94b7dc2f84571c49c11c98672da65d27.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/cross_small.svg b/Packs/Kenney-cursors/Basic/cross_small.svg
new file mode 100644
index 0000000..9a8e13d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cross_small.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/cross_small.svg.import b/Packs/Kenney-cursors/Basic/cross_small.svg.import
new file mode 100644
index 0000000..64cbcef
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cross_small.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cegq5lir0uig5"
+path="res://.godot/imported/cross_small.svg-5dd5373f08faeedb7e3ddeaabdd85928.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/cross_small.svg"
+dest_files=["res://.godot/imported/cross_small.svg-5dd5373f08faeedb7e3ddeaabdd85928.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/cursor_alias.svg b/Packs/Kenney-cursors/Basic/cursor_alias.svg
new file mode 100644
index 0000000..a459368
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_alias.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/cursor_alias.svg.import b/Packs/Kenney-cursors/Basic/cursor_alias.svg.import
new file mode 100644
index 0000000..caf71f7
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_alias.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bk43h4lx5uqy"
+path="res://.godot/imported/cursor_alias.svg-90084228be0536bdb5b75f69ae37f0e1.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/cursor_alias.svg"
+dest_files=["res://.godot/imported/cursor_alias.svg-90084228be0536bdb5b75f69ae37f0e1.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/cursor_busy.svg b/Packs/Kenney-cursors/Basic/cursor_busy.svg
new file mode 100644
index 0000000..ecda740
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_busy.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/cursor_busy.svg.import b/Packs/Kenney-cursors/Basic/cursor_busy.svg.import
new file mode 100644
index 0000000..467036c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_busy.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bhv2dr8ah3jha"
+path="res://.godot/imported/cursor_busy.svg-ad0fae8f85e44c8e9ee4c7da3199c08f.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/cursor_busy.svg"
+dest_files=["res://.godot/imported/cursor_busy.svg-ad0fae8f85e44c8e9ee4c7da3199c08f.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/cursor_cogs.svg b/Packs/Kenney-cursors/Basic/cursor_cogs.svg
new file mode 100644
index 0000000..50e1849
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_cogs.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/cursor_cogs.svg.import b/Packs/Kenney-cursors/Basic/cursor_cogs.svg.import
new file mode 100644
index 0000000..d84e473
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_cogs.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cwt2ntccy351b"
+path="res://.godot/imported/cursor_cogs.svg-bed16d70c409fcf95a81b43b10a150b3.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/cursor_cogs.svg"
+dest_files=["res://.godot/imported/cursor_cogs.svg-bed16d70c409fcf95a81b43b10a150b3.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/cursor_copy.svg b/Packs/Kenney-cursors/Basic/cursor_copy.svg
new file mode 100644
index 0000000..97f6fb0
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_copy.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/cursor_copy.svg.import b/Packs/Kenney-cursors/Basic/cursor_copy.svg.import
new file mode 100644
index 0000000..e22f303
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_copy.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bdkdmbywl2d4a"
+path="res://.godot/imported/cursor_copy.svg-5d96ae4e32bc9da042bea2fcd4d35c17.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/cursor_copy.svg"
+dest_files=["res://.godot/imported/cursor_copy.svg-5d96ae4e32bc9da042bea2fcd4d35c17.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/cursor_disabled.svg b/Packs/Kenney-cursors/Basic/cursor_disabled.svg
new file mode 100644
index 0000000..e9ef256
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_disabled.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/cursor_disabled.svg.import b/Packs/Kenney-cursors/Basic/cursor_disabled.svg.import
new file mode 100644
index 0000000..c1213b9
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_disabled.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c6liktv5eqdfw"
+path="res://.godot/imported/cursor_disabled.svg-e7933bc56f46ded9ba67e4309f079021.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/cursor_disabled.svg"
+dest_files=["res://.godot/imported/cursor_disabled.svg-e7933bc56f46ded9ba67e4309f079021.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/cursor_exclamation.svg b/Packs/Kenney-cursors/Basic/cursor_exclamation.svg
new file mode 100644
index 0000000..96a357e
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_exclamation.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/cursor_exclamation.svg.import b/Packs/Kenney-cursors/Basic/cursor_exclamation.svg.import
new file mode 100644
index 0000000..013c79a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_exclamation.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://vu3kr40w6lpf"
+path="res://.godot/imported/cursor_exclamation.svg-09073ad498e747a5a6e8cf8a9728600a.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/cursor_exclamation.svg"
+dest_files=["res://.godot/imported/cursor_exclamation.svg-09073ad498e747a5a6e8cf8a9728600a.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/cursor_help.svg b/Packs/Kenney-cursors/Basic/cursor_help.svg
new file mode 100644
index 0000000..a25aaae
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_help.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/cursor_help.svg.import b/Packs/Kenney-cursors/Basic/cursor_help.svg.import
new file mode 100644
index 0000000..e0482d4
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_help.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://fe40a4l6qp1o"
+path="res://.godot/imported/cursor_help.svg-137d3e023cc183dff2394a895b60ff18.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/cursor_help.svg"
+dest_files=["res://.godot/imported/cursor_help.svg-137d3e023cc183dff2394a895b60ff18.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/cursor_menu.svg b/Packs/Kenney-cursors/Basic/cursor_menu.svg
new file mode 100644
index 0000000..07a130a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_menu.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/cursor_menu.svg.import b/Packs/Kenney-cursors/Basic/cursor_menu.svg.import
new file mode 100644
index 0000000..5569a90
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_menu.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://d4lydug1eo2on"
+path="res://.godot/imported/cursor_menu.svg-0c10e739e73131f07d4add985d2b1160.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/cursor_menu.svg"
+dest_files=["res://.godot/imported/cursor_menu.svg-0c10e739e73131f07d4add985d2b1160.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/cursor_none.svg b/Packs/Kenney-cursors/Basic/cursor_none.svg
new file mode 100644
index 0000000..b25d436
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_none.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/cursor_none.svg.import b/Packs/Kenney-cursors/Basic/cursor_none.svg.import
new file mode 100644
index 0000000..a7571f5
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/cursor_none.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://daucduhpsgf1c"
+path="res://.godot/imported/cursor_none.svg-9dfc80de9b5158d9f750562067891a62.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/cursor_none.svg"
+dest_files=["res://.godot/imported/cursor_none.svg-9dfc80de9b5158d9f750562067891a62.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/disabled.svg b/Packs/Kenney-cursors/Basic/disabled.svg
new file mode 100644
index 0000000..1007752
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/disabled.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/disabled.svg.import b/Packs/Kenney-cursors/Basic/disabled.svg.import
new file mode 100644
index 0000000..331fa1b
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/disabled.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bmjm5bwqi462f"
+path="res://.godot/imported/disabled.svg-7e8255f4db2e3ecb19c69c7363445e4c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/disabled.svg"
+dest_files=["res://.godot/imported/disabled.svg-7e8255f4db2e3ecb19c69c7363445e4c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/door.svg b/Packs/Kenney-cursors/Basic/door.svg
new file mode 100644
index 0000000..4ce537e
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/door.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/door.svg.import b/Packs/Kenney-cursors/Basic/door.svg.import
new file mode 100644
index 0000000..9005189
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/door.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://drnf0oa58yhb3"
+path="res://.godot/imported/door.svg-35648bcae14d826942fca05d62239586.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/door.svg"
+dest_files=["res://.godot/imported/door.svg-35648bcae14d826942fca05d62239586.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/door_disabled.svg b/Packs/Kenney-cursors/Basic/door_disabled.svg
new file mode 100644
index 0000000..9738088
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/door_disabled.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/door_disabled.svg.import b/Packs/Kenney-cursors/Basic/door_disabled.svg.import
new file mode 100644
index 0000000..4c30a6e
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/door_disabled.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dquvm3i7ilndg"
+path="res://.godot/imported/door_disabled.svg-625e4330ee0186850ee89a780da417e5.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/door_disabled.svg"
+dest_files=["res://.godot/imported/door_disabled.svg-625e4330ee0186850ee89a780da417e5.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/door_enter.svg b/Packs/Kenney-cursors/Basic/door_enter.svg
new file mode 100644
index 0000000..fea7fee
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/door_enter.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/door_enter.svg.import b/Packs/Kenney-cursors/Basic/door_enter.svg.import
new file mode 100644
index 0000000..842cd24
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/door_enter.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://t5kbpqti2xk0"
+path="res://.godot/imported/door_enter.svg-9e2bf46f6c5f26a25ced3d8ef97657f2.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/door_enter.svg"
+dest_files=["res://.godot/imported/door_enter.svg-9e2bf46f6c5f26a25ced3d8ef97657f2.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/door_exit.svg b/Packs/Kenney-cursors/Basic/door_exit.svg
new file mode 100644
index 0000000..226d557
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/door_exit.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/door_exit.svg.import b/Packs/Kenney-cursors/Basic/door_exit.svg.import
new file mode 100644
index 0000000..c60e695
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/door_exit.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://4tv4boqewlad"
+path="res://.godot/imported/door_exit.svg-ff961de28b864253674da00d0f39e454.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/door_exit.svg"
+dest_files=["res://.godot/imported/door_exit.svg-ff961de28b864253674da00d0f39e454.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/dot_large.svg b/Packs/Kenney-cursors/Basic/dot_large.svg
new file mode 100644
index 0000000..df157fb
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/dot_large.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/dot_large.svg.import b/Packs/Kenney-cursors/Basic/dot_large.svg.import
new file mode 100644
index 0000000..7a7aa90
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/dot_large.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://3vssvnnqrawg"
+path="res://.godot/imported/dot_large.svg-bfa7e6aaeceb802fbb2e425fdeb2ffd3.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/dot_large.svg"
+dest_files=["res://.godot/imported/dot_large.svg-bfa7e6aaeceb802fbb2e425fdeb2ffd3.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/dot_small.svg b/Packs/Kenney-cursors/Basic/dot_small.svg
new file mode 100644
index 0000000..f5e36a4
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/dot_small.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/dot_small.svg.import b/Packs/Kenney-cursors/Basic/dot_small.svg.import
new file mode 100644
index 0000000..7ad549f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/dot_small.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ws14c2vl4eko"
+path="res://.godot/imported/dot_small.svg-34bfe02ffb6c707fbfefc39c0a6a4a09.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/dot_small.svg"
+dest_files=["res://.godot/imported/dot_small.svg-34bfe02ffb6c707fbfefc39c0a6a4a09.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/drawing_brush.svg b/Packs/Kenney-cursors/Basic/drawing_brush.svg
new file mode 100644
index 0000000..63ad720
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_brush.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/drawing_brush.svg.import b/Packs/Kenney-cursors/Basic/drawing_brush.svg.import
new file mode 100644
index 0000000..ae0c4f9
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_brush.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://clqe0xv46pok5"
+path="res://.godot/imported/drawing_brush.svg-01113287b2c171ad8d20b3520d2de8d6.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/drawing_brush.svg"
+dest_files=["res://.godot/imported/drawing_brush.svg-01113287b2c171ad8d20b3520d2de8d6.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/drawing_brush_large.svg b/Packs/Kenney-cursors/Basic/drawing_brush_large.svg
new file mode 100644
index 0000000..569b459
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_brush_large.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/drawing_brush_large.svg.import b/Packs/Kenney-cursors/Basic/drawing_brush_large.svg.import
new file mode 100644
index 0000000..7e6acbc
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_brush_large.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://7as2esnqr7wq"
+path="res://.godot/imported/drawing_brush_large.svg-50fd57c4a50e8d71ea3b46a0deb2d5b7.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/drawing_brush_large.svg"
+dest_files=["res://.godot/imported/drawing_brush_large.svg-50fd57c4a50e8d71ea3b46a0deb2d5b7.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/drawing_bucket.svg b/Packs/Kenney-cursors/Basic/drawing_bucket.svg
new file mode 100644
index 0000000..9e1b8ba
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_bucket.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/drawing_bucket.svg.import b/Packs/Kenney-cursors/Basic/drawing_bucket.svg.import
new file mode 100644
index 0000000..ebca30b
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_bucket.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c0qesm3ejehqd"
+path="res://.godot/imported/drawing_bucket.svg-5a65c68d6cfb8b032aba26b3008c48e4.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/drawing_bucket.svg"
+dest_files=["res://.godot/imported/drawing_bucket.svg-5a65c68d6cfb8b032aba26b3008c48e4.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/drawing_eraser.svg b/Packs/Kenney-cursors/Basic/drawing_eraser.svg
new file mode 100644
index 0000000..ffd99d3
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_eraser.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/drawing_eraser.svg.import b/Packs/Kenney-cursors/Basic/drawing_eraser.svg.import
new file mode 100644
index 0000000..0267b24
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_eraser.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dyvi17hiehiuw"
+path="res://.godot/imported/drawing_eraser.svg-bded0147355728e8136ff5d27e20e91a.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/drawing_eraser.svg"
+dest_files=["res://.godot/imported/drawing_eraser.svg-bded0147355728e8136ff5d27e20e91a.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/drawing_pen.svg b/Packs/Kenney-cursors/Basic/drawing_pen.svg
new file mode 100644
index 0000000..f2627ae
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_pen.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/drawing_pen.svg.import b/Packs/Kenney-cursors/Basic/drawing_pen.svg.import
new file mode 100644
index 0000000..c2dd72d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_pen.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://s55rlf63y8pb"
+path="res://.godot/imported/drawing_pen.svg-450d6dff4270906bf95bcd7176c541ae.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/drawing_pen.svg"
+dest_files=["res://.godot/imported/drawing_pen.svg-450d6dff4270906bf95bcd7176c541ae.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/drawing_pencil.svg b/Packs/Kenney-cursors/Basic/drawing_pencil.svg
new file mode 100644
index 0000000..c60812c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_pencil.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/drawing_pencil.svg.import b/Packs/Kenney-cursors/Basic/drawing_pencil.svg.import
new file mode 100644
index 0000000..fb22b46
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_pencil.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dkah5kcyym0bt"
+path="res://.godot/imported/drawing_pencil.svg-53e106125446ac4e7f8f5eaec0978b3e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/drawing_pencil.svg"
+dest_files=["res://.godot/imported/drawing_pencil.svg-53e106125446ac4e7f8f5eaec0978b3e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/drawing_picker.svg b/Packs/Kenney-cursors/Basic/drawing_picker.svg
new file mode 100644
index 0000000..ab0813b
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_picker.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/drawing_picker.svg.import b/Packs/Kenney-cursors/Basic/drawing_picker.svg.import
new file mode 100644
index 0000000..2381a50
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_picker.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cvfqlerwy6yow"
+path="res://.godot/imported/drawing_picker.svg-2f6f1cee362c25ca94883d7d4a0deaed.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/drawing_picker.svg"
+dest_files=["res://.godot/imported/drawing_picker.svg-2f6f1cee362c25ca94883d7d4a0deaed.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/drawing_spray.svg b/Packs/Kenney-cursors/Basic/drawing_spray.svg
new file mode 100644
index 0000000..20afd1c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_spray.svg
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/drawing_spray.svg.import b/Packs/Kenney-cursors/Basic/drawing_spray.svg.import
new file mode 100644
index 0000000..40afb5c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/drawing_spray.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cmtygjvufwyui"
+path="res://.godot/imported/drawing_spray.svg-2e906e104ca6981d85032e740d27fa77.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/drawing_spray.svg"
+dest_files=["res://.godot/imported/drawing_spray.svg-2e906e104ca6981d85032e740d27fa77.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/gauntlet_default.svg b/Packs/Kenney-cursors/Basic/gauntlet_default.svg
new file mode 100644
index 0000000..8b57be0
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/gauntlet_default.svg
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/gauntlet_default.svg.import b/Packs/Kenney-cursors/Basic/gauntlet_default.svg.import
new file mode 100644
index 0000000..6ea9b2b
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/gauntlet_default.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://4ehy04845grx"
+path="res://.godot/imported/gauntlet_default.svg-f6ec343648cfe49379365dae60f3f2fb.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/gauntlet_default.svg"
+dest_files=["res://.godot/imported/gauntlet_default.svg-f6ec343648cfe49379365dae60f3f2fb.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/gauntlet_open.svg b/Packs/Kenney-cursors/Basic/gauntlet_open.svg
new file mode 100644
index 0000000..cd92b1a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/gauntlet_open.svg
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/gauntlet_open.svg.import b/Packs/Kenney-cursors/Basic/gauntlet_open.svg.import
new file mode 100644
index 0000000..f8f25d7
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/gauntlet_open.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://gkk8fnei0a66"
+path="res://.godot/imported/gauntlet_open.svg-b007d15cc926155e1f979395d2ff940c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/gauntlet_open.svg"
+dest_files=["res://.godot/imported/gauntlet_open.svg-b007d15cc926155e1f979395d2ff940c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/gauntlet_point.svg b/Packs/Kenney-cursors/Basic/gauntlet_point.svg
new file mode 100644
index 0000000..0473828
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/gauntlet_point.svg
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/gauntlet_point.svg.import b/Packs/Kenney-cursors/Basic/gauntlet_point.svg.import
new file mode 100644
index 0000000..eb62e75
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/gauntlet_point.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c5uqv5pimgnvp"
+path="res://.godot/imported/gauntlet_point.svg-ad185b874f75e452ad5dcd773bbc19ca.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/gauntlet_point.svg"
+dest_files=["res://.godot/imported/gauntlet_point.svg-ad185b874f75e452ad5dcd773bbc19ca.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_closed.svg b/Packs/Kenney-cursors/Basic/hand_closed.svg
new file mode 100644
index 0000000..dbbcd77
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_closed.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_closed.svg.import b/Packs/Kenney-cursors/Basic/hand_closed.svg.import
new file mode 100644
index 0000000..cd03fd1
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_closed.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bjxnjhe1171ip"
+path="res://.godot/imported/hand_closed.svg-b0c69777c744b5b4d044a5012a1787b8.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_closed.svg"
+dest_files=["res://.godot/imported/hand_closed.svg-b0c69777c744b5b4d044a5012a1787b8.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_open.svg b/Packs/Kenney-cursors/Basic/hand_open.svg
new file mode 100644
index 0000000..1fe252d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_open.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_open.svg.import b/Packs/Kenney-cursors/Basic/hand_open.svg.import
new file mode 100644
index 0000000..6421f1c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_open.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cyd7ffanoss6p"
+path="res://.godot/imported/hand_open.svg-104f32e43bde171b7f77452ba4a9db97.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_open.svg"
+dest_files=["res://.godot/imported/hand_open.svg-104f32e43bde171b7f77452ba4a9db97.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_point.svg b/Packs/Kenney-cursors/Basic/hand_point.svg
new file mode 100644
index 0000000..73d46bd
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_point.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_point.svg.import b/Packs/Kenney-cursors/Basic/hand_point.svg.import
new file mode 100644
index 0000000..02da03d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_point.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c2pgcvkimm7y6"
+path="res://.godot/imported/hand_point.svg-d66e0d4ef5732104012e389420caedff.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_point.svg"
+dest_files=["res://.godot/imported/hand_point.svg-d66e0d4ef5732104012e389420caedff.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_point_e.svg b/Packs/Kenney-cursors/Basic/hand_point_e.svg
new file mode 100644
index 0000000..402d02d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_point_e.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_point_e.svg.import b/Packs/Kenney-cursors/Basic/hand_point_e.svg.import
new file mode 100644
index 0000000..7177104
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_point_e.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://d4j1xahb0g6kt"
+path="res://.godot/imported/hand_point_e.svg-62fd82379643fe90ef04ff3e0d31e092.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_point_e.svg"
+dest_files=["res://.godot/imported/hand_point_e.svg-62fd82379643fe90ef04ff3e0d31e092.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_point_n.svg b/Packs/Kenney-cursors/Basic/hand_point_n.svg
new file mode 100644
index 0000000..4bf78fb
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_point_n.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_point_n.svg.import b/Packs/Kenney-cursors/Basic/hand_point_n.svg.import
new file mode 100644
index 0000000..c448097
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_point_n.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://viu0wu2pmgj5"
+path="res://.godot/imported/hand_point_n.svg-06f65c6d30c6ece40cd9efcbcdd43457.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_point_n.svg"
+dest_files=["res://.godot/imported/hand_point_n.svg-06f65c6d30c6ece40cd9efcbcdd43457.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_small_closed.svg b/Packs/Kenney-cursors/Basic/hand_small_closed.svg
new file mode 100644
index 0000000..ce7a1e1
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_small_closed.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_small_closed.svg.import b/Packs/Kenney-cursors/Basic/hand_small_closed.svg.import
new file mode 100644
index 0000000..3f66f72
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_small_closed.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c82lq60hpjqc5"
+path="res://.godot/imported/hand_small_closed.svg-3f05725b64676d51ea0aa858e1a98bd3.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_small_closed.svg"
+dest_files=["res://.godot/imported/hand_small_closed.svg-3f05725b64676d51ea0aa858e1a98bd3.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_small_open.svg b/Packs/Kenney-cursors/Basic/hand_small_open.svg
new file mode 100644
index 0000000..b819843
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_small_open.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_small_open.svg.import b/Packs/Kenney-cursors/Basic/hand_small_open.svg.import
new file mode 100644
index 0000000..9599ec3
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_small_open.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bxxeimm86x3u8"
+path="res://.godot/imported/hand_small_open.svg-e10c39ca65d48c1ed68b181e0f35d558.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_small_open.svg"
+dest_files=["res://.godot/imported/hand_small_open.svg-e10c39ca65d48c1ed68b181e0f35d558.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_small_point.svg b/Packs/Kenney-cursors/Basic/hand_small_point.svg
new file mode 100644
index 0000000..db5c815
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_small_point.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_small_point.svg.import b/Packs/Kenney-cursors/Basic/hand_small_point.svg.import
new file mode 100644
index 0000000..baea08d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_small_point.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c43au16sg8vja"
+path="res://.godot/imported/hand_small_point.svg-b0295868abd4b05841864b259bd33b3b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_small_point.svg"
+dest_files=["res://.godot/imported/hand_small_point.svg-b0295868abd4b05841864b259bd33b3b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_small_point_e.svg b/Packs/Kenney-cursors/Basic/hand_small_point_e.svg
new file mode 100644
index 0000000..afe4f1e
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_small_point_e.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_small_point_e.svg.import b/Packs/Kenney-cursors/Basic/hand_small_point_e.svg.import
new file mode 100644
index 0000000..6eaa4ce
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_small_point_e.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://0mc5cpny0akf"
+path="res://.godot/imported/hand_small_point_e.svg-da2e835751ad640099228b24f25bcac4.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_small_point_e.svg"
+dest_files=["res://.godot/imported/hand_small_point_e.svg-da2e835751ad640099228b24f25bcac4.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_small_point_n.svg b/Packs/Kenney-cursors/Basic/hand_small_point_n.svg
new file mode 100644
index 0000000..04f59c5
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_small_point_n.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_small_point_n.svg.import b/Packs/Kenney-cursors/Basic/hand_small_point_n.svg.import
new file mode 100644
index 0000000..5e4d90e
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_small_point_n.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cs5w3ici7ukn7"
+path="res://.godot/imported/hand_small_point_n.svg-4f6bc7c97af3dfb4bbea1408931cb7dc.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_small_point_n.svg"
+dest_files=["res://.godot/imported/hand_small_point_n.svg-4f6bc7c97af3dfb4bbea1408931cb7dc.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_thin_closed.svg b/Packs/Kenney-cursors/Basic/hand_thin_closed.svg
new file mode 100644
index 0000000..21982f4
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_thin_closed.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_thin_closed.svg.import b/Packs/Kenney-cursors/Basic/hand_thin_closed.svg.import
new file mode 100644
index 0000000..b44c2d0
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_thin_closed.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bny5v1wp0223u"
+path="res://.godot/imported/hand_thin_closed.svg-5a29896beec377c62fa8010b7ebda972.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_thin_closed.svg"
+dest_files=["res://.godot/imported/hand_thin_closed.svg-5a29896beec377c62fa8010b7ebda972.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_thin_open.svg b/Packs/Kenney-cursors/Basic/hand_thin_open.svg
new file mode 100644
index 0000000..6beacf8
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_thin_open.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_thin_open.svg.import b/Packs/Kenney-cursors/Basic/hand_thin_open.svg.import
new file mode 100644
index 0000000..69da56a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_thin_open.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://20qbbmtdslk0"
+path="res://.godot/imported/hand_thin_open.svg-def94dc943cd1575d89023d863829bfb.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_thin_open.svg"
+dest_files=["res://.godot/imported/hand_thin_open.svg-def94dc943cd1575d89023d863829bfb.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_thin_point.svg b/Packs/Kenney-cursors/Basic/hand_thin_point.svg
new file mode 100644
index 0000000..e15a8a3
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_thin_point.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_thin_point.svg.import b/Packs/Kenney-cursors/Basic/hand_thin_point.svg.import
new file mode 100644
index 0000000..114fddd
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_thin_point.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bwk2tglc7auwj"
+path="res://.godot/imported/hand_thin_point.svg-0f18ff1fee75a213eb6dd28122c80cb3.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_thin_point.svg"
+dest_files=["res://.godot/imported/hand_thin_point.svg-0f18ff1fee75a213eb6dd28122c80cb3.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_thin_small_closed.svg b/Packs/Kenney-cursors/Basic/hand_thin_small_closed.svg
new file mode 100644
index 0000000..def576c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_thin_small_closed.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_thin_small_closed.svg.import b/Packs/Kenney-cursors/Basic/hand_thin_small_closed.svg.import
new file mode 100644
index 0000000..78e0e4c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_thin_small_closed.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ctwmw08ryx08u"
+path="res://.godot/imported/hand_thin_small_closed.svg-0973111986d1dbe0075b53a24f6e7ddb.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_thin_small_closed.svg"
+dest_files=["res://.godot/imported/hand_thin_small_closed.svg-0973111986d1dbe0075b53a24f6e7ddb.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_thin_small_open.svg b/Packs/Kenney-cursors/Basic/hand_thin_small_open.svg
new file mode 100644
index 0000000..66b942b
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_thin_small_open.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_thin_small_open.svg.import b/Packs/Kenney-cursors/Basic/hand_thin_small_open.svg.import
new file mode 100644
index 0000000..484faf1
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_thin_small_open.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bray4qcrs8ret"
+path="res://.godot/imported/hand_thin_small_open.svg-7e942fcbd2096eb39d610eac8728a73a.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_thin_small_open.svg"
+dest_files=["res://.godot/imported/hand_thin_small_open.svg-7e942fcbd2096eb39d610eac8728a73a.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/hand_thin_small_point.svg b/Packs/Kenney-cursors/Basic/hand_thin_small_point.svg
new file mode 100644
index 0000000..bbaea26
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_thin_small_point.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/hand_thin_small_point.svg.import b/Packs/Kenney-cursors/Basic/hand_thin_small_point.svg.import
new file mode 100644
index 0000000..fde88b7
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/hand_thin_small_point.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dqimjiaxy6gwc"
+path="res://.godot/imported/hand_thin_small_point.svg-c09935679872f257c9f8cf2896e2d080.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/hand_thin_small_point.svg"
+dest_files=["res://.godot/imported/hand_thin_small_point.svg-c09935679872f257c9f8cf2896e2d080.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/line_cross.svg b/Packs/Kenney-cursors/Basic/line_cross.svg
new file mode 100644
index 0000000..67c1e9f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/line_cross.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/line_cross.svg.import b/Packs/Kenney-cursors/Basic/line_cross.svg.import
new file mode 100644
index 0000000..bb4afda
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/line_cross.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c2b85nltvws6j"
+path="res://.godot/imported/line_cross.svg-154023ca0f78a112ec8931048db3b2aa.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/line_cross.svg"
+dest_files=["res://.godot/imported/line_cross.svg-154023ca0f78a112ec8931048db3b2aa.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/line_horizontal.svg b/Packs/Kenney-cursors/Basic/line_horizontal.svg
new file mode 100644
index 0000000..71942d5
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/line_horizontal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/line_horizontal.svg.import b/Packs/Kenney-cursors/Basic/line_horizontal.svg.import
new file mode 100644
index 0000000..9371f9a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/line_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bcv6kfkko0r81"
+path="res://.godot/imported/line_horizontal.svg-14c4781250a998b65eb718516a81fda0.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/line_horizontal.svg"
+dest_files=["res://.godot/imported/line_horizontal.svg-14c4781250a998b65eb718516a81fda0.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/line_vertical.svg b/Packs/Kenney-cursors/Basic/line_vertical.svg
new file mode 100644
index 0000000..118804d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/line_vertical.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/line_vertical.svg.import b/Packs/Kenney-cursors/Basic/line_vertical.svg.import
new file mode 100644
index 0000000..d452d3c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/line_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cfrfg8bbxfw8y"
+path="res://.godot/imported/line_vertical.svg-ae10c21120ff6f5287b7f7e8102e1d80.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/line_vertical.svg"
+dest_files=["res://.godot/imported/line_vertical.svg-ae10c21120ff6f5287b7f7e8102e1d80.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/lock.svg b/Packs/Kenney-cursors/Basic/lock.svg
new file mode 100644
index 0000000..37e6971
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/lock.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/lock.svg.import b/Packs/Kenney-cursors/Basic/lock.svg.import
new file mode 100644
index 0000000..88aa97c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/lock.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b7vpdb7c6qvmw"
+path="res://.godot/imported/lock.svg-e9c82a24d583928dfa34ea47a8235d4c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/lock.svg"
+dest_files=["res://.godot/imported/lock.svg-e9c82a24d583928dfa34ea47a8235d4c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/lock_unlocked.svg b/Packs/Kenney-cursors/Basic/lock_unlocked.svg
new file mode 100644
index 0000000..a6f2c59
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/lock_unlocked.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/lock_unlocked.svg.import b/Packs/Kenney-cursors/Basic/lock_unlocked.svg.import
new file mode 100644
index 0000000..7d130db
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/lock_unlocked.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dlvpcsb0afxqi"
+path="res://.godot/imported/lock_unlocked.svg-785fb302f50ae330c815f5e2ae955cd0.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/lock_unlocked.svg"
+dest_files=["res://.godot/imported/lock_unlocked.svg-785fb302f50ae330c815f5e2ae955cd0.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/look_a.svg b/Packs/Kenney-cursors/Basic/look_a.svg
new file mode 100644
index 0000000..218bed1
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/look_a.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/look_a.svg.import b/Packs/Kenney-cursors/Basic/look_a.svg.import
new file mode 100644
index 0000000..71fd70d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/look_a.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ed2nvnts8pa7"
+path="res://.godot/imported/look_a.svg-507bf3eb4b0e991acf25cbf73bbb80e1.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/look_a.svg"
+dest_files=["res://.godot/imported/look_a.svg-507bf3eb4b0e991acf25cbf73bbb80e1.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/look_b.svg b/Packs/Kenney-cursors/Basic/look_b.svg
new file mode 100644
index 0000000..a3704c7
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/look_b.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/look_b.svg.import b/Packs/Kenney-cursors/Basic/look_b.svg.import
new file mode 100644
index 0000000..d29c8c9
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/look_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://or17fnn188ho"
+path="res://.godot/imported/look_b.svg-3fa6abfb488bf216693eb89a989bfbd9.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/look_b.svg"
+dest_files=["res://.godot/imported/look_b.svg-3fa6abfb488bf216693eb89a989bfbd9.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/look_c.svg b/Packs/Kenney-cursors/Basic/look_c.svg
new file mode 100644
index 0000000..6fa0ce9
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/look_c.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/look_c.svg.import b/Packs/Kenney-cursors/Basic/look_c.svg.import
new file mode 100644
index 0000000..fd980df
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/look_c.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bym7ks0lf6jtw"
+path="res://.godot/imported/look_c.svg-9cd28849eba733e62f07218e5a7f5cb3.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/look_c.svg"
+dest_files=["res://.godot/imported/look_c.svg-9cd28849eba733e62f07218e5a7f5cb3.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/look_d.svg b/Packs/Kenney-cursors/Basic/look_d.svg
new file mode 100644
index 0000000..1547a33
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/look_d.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/look_d.svg.import b/Packs/Kenney-cursors/Basic/look_d.svg.import
new file mode 100644
index 0000000..b0da279
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/look_d.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://l2mopn8dheev"
+path="res://.godot/imported/look_d.svg-1935ab8eed7cc98607d4dc9150f7c31b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/look_d.svg"
+dest_files=["res://.godot/imported/look_d.svg-1935ab8eed7cc98607d4dc9150f7c31b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/mark_exclamation.svg b/Packs/Kenney-cursors/Basic/mark_exclamation.svg
new file mode 100644
index 0000000..4bd9395
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/mark_exclamation.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/mark_exclamation.svg.import b/Packs/Kenney-cursors/Basic/mark_exclamation.svg.import
new file mode 100644
index 0000000..0b7dd5d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/mark_exclamation.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b3ql8klohxcy4"
+path="res://.godot/imported/mark_exclamation.svg-48611f0ac5b59e2bab33c596db46479a.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/mark_exclamation.svg"
+dest_files=["res://.godot/imported/mark_exclamation.svg-48611f0ac5b59e2bab33c596db46479a.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/mark_exclamation_pointer_b.svg b/Packs/Kenney-cursors/Basic/mark_exclamation_pointer_b.svg
new file mode 100644
index 0000000..9de1a17
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/mark_exclamation_pointer_b.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/mark_exclamation_pointer_b.svg.import b/Packs/Kenney-cursors/Basic/mark_exclamation_pointer_b.svg.import
new file mode 100644
index 0000000..8497a38
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/mark_exclamation_pointer_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ymgdea6axun5"
+path="res://.godot/imported/mark_exclamation_pointer_b.svg-08e37a6dabb65b7e89b1ab7360d4c189.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/mark_exclamation_pointer_b.svg"
+dest_files=["res://.godot/imported/mark_exclamation_pointer_b.svg-08e37a6dabb65b7e89b1ab7360d4c189.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/mark_question.svg b/Packs/Kenney-cursors/Basic/mark_question.svg
new file mode 100644
index 0000000..1ae2748
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/mark_question.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/mark_question.svg.import b/Packs/Kenney-cursors/Basic/mark_question.svg.import
new file mode 100644
index 0000000..6b85580
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/mark_question.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://d375r1i12j2r8"
+path="res://.godot/imported/mark_question.svg-6854bf9392694c0345f1f528b87d4d72.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/mark_question.svg"
+dest_files=["res://.godot/imported/mark_question.svg-6854bf9392694c0345f1f528b87d4d72.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/mark_question_pointer_b.svg b/Packs/Kenney-cursors/Basic/mark_question_pointer_b.svg
new file mode 100644
index 0000000..a1d0fb9
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/mark_question_pointer_b.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/mark_question_pointer_b.svg.import b/Packs/Kenney-cursors/Basic/mark_question_pointer_b.svg.import
new file mode 100644
index 0000000..9863b66
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/mark_question_pointer_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c4021q5klis27"
+path="res://.godot/imported/mark_question_pointer_b.svg-0c341ce650fa727b84475f1c547cb74d.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/mark_question_pointer_b.svg"
+dest_files=["res://.godot/imported/mark_question_pointer_b.svg-0c341ce650fa727b84475f1c547cb74d.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/message_dots_round.svg b/Packs/Kenney-cursors/Basic/message_dots_round.svg
new file mode 100644
index 0000000..81dcada
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/message_dots_round.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/message_dots_round.svg.import b/Packs/Kenney-cursors/Basic/message_dots_round.svg.import
new file mode 100644
index 0000000..9675d94
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/message_dots_round.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ihadrd86n1df"
+path="res://.godot/imported/message_dots_round.svg-10b83de121198fab8013e91d183c646a.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/message_dots_round.svg"
+dest_files=["res://.godot/imported/message_dots_round.svg-10b83de121198fab8013e91d183c646a.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/message_dots_square.svg b/Packs/Kenney-cursors/Basic/message_dots_square.svg
new file mode 100644
index 0000000..bc2f761
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/message_dots_square.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/message_dots_square.svg.import b/Packs/Kenney-cursors/Basic/message_dots_square.svg.import
new file mode 100644
index 0000000..35ce9c1
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/message_dots_square.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dnsrwhsnyb33r"
+path="res://.godot/imported/message_dots_square.svg-cb73cfb453ed024086cfbe862abf6da2.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/message_dots_square.svg"
+dest_files=["res://.godot/imported/message_dots_square.svg-cb73cfb453ed024086cfbe862abf6da2.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/message_round.svg b/Packs/Kenney-cursors/Basic/message_round.svg
new file mode 100644
index 0000000..0ac61ca
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/message_round.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/message_round.svg.import b/Packs/Kenney-cursors/Basic/message_round.svg.import
new file mode 100644
index 0000000..0d0db0a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/message_round.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cnjfjlxhg784t"
+path="res://.godot/imported/message_round.svg-18d1e848ed8bf5baffcd935e4258a46e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/message_round.svg"
+dest_files=["res://.godot/imported/message_round.svg-18d1e848ed8bf5baffcd935e4258a46e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/message_square.svg b/Packs/Kenney-cursors/Basic/message_square.svg
new file mode 100644
index 0000000..fe1c25d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/message_square.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/message_square.svg.import b/Packs/Kenney-cursors/Basic/message_square.svg.import
new file mode 100644
index 0000000..8972bd2
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/message_square.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c5aw00c8io6yg"
+path="res://.godot/imported/message_square.svg-39201ba6c55ac3f742a21099fa798a2b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/message_square.svg"
+dest_files=["res://.godot/imported/message_square.svg-39201ba6c55ac3f742a21099fa798a2b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/navigation_e.svg b/Packs/Kenney-cursors/Basic/navigation_e.svg
new file mode 100644
index 0000000..33911b2
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_e.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/navigation_e.svg.import b/Packs/Kenney-cursors/Basic/navigation_e.svg.import
new file mode 100644
index 0000000..f32c8ac
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_e.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bjf36qb2e1r86"
+path="res://.godot/imported/navigation_e.svg-63fa9fca04508c042b9e57effec2bcf5.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/navigation_e.svg"
+dest_files=["res://.godot/imported/navigation_e.svg-63fa9fca04508c042b9e57effec2bcf5.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/navigation_n.svg b/Packs/Kenney-cursors/Basic/navigation_n.svg
new file mode 100644
index 0000000..6800067
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_n.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/navigation_n.svg.import b/Packs/Kenney-cursors/Basic/navigation_n.svg.import
new file mode 100644
index 0000000..2183254
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_n.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://j2ythsyb4cuw"
+path="res://.godot/imported/navigation_n.svg-575028971ed461bff21133d7939b7d3f.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/navigation_n.svg"
+dest_files=["res://.godot/imported/navigation_n.svg-575028971ed461bff21133d7939b7d3f.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/navigation_ne.svg b/Packs/Kenney-cursors/Basic/navigation_ne.svg
new file mode 100644
index 0000000..6a272da
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_ne.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/navigation_ne.svg.import b/Packs/Kenney-cursors/Basic/navigation_ne.svg.import
new file mode 100644
index 0000000..5757678
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_ne.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://5tyxwni4h5w0"
+path="res://.godot/imported/navigation_ne.svg-8a1df6f463611689dba8e8ecb01d240e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/navigation_ne.svg"
+dest_files=["res://.godot/imported/navigation_ne.svg-8a1df6f463611689dba8e8ecb01d240e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/navigation_nw.svg b/Packs/Kenney-cursors/Basic/navigation_nw.svg
new file mode 100644
index 0000000..6ff77df
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_nw.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/navigation_nw.svg.import b/Packs/Kenney-cursors/Basic/navigation_nw.svg.import
new file mode 100644
index 0000000..6ffffd7
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_nw.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ct33wprktg153"
+path="res://.godot/imported/navigation_nw.svg-fec4b48a63013f7073f89b4fa3b140a6.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/navigation_nw.svg"
+dest_files=["res://.godot/imported/navigation_nw.svg-fec4b48a63013f7073f89b4fa3b140a6.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/navigation_s.svg b/Packs/Kenney-cursors/Basic/navigation_s.svg
new file mode 100644
index 0000000..b840468
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_s.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/navigation_s.svg.import b/Packs/Kenney-cursors/Basic/navigation_s.svg.import
new file mode 100644
index 0000000..b15ab0e
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_s.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://wng2d46yga4l"
+path="res://.godot/imported/navigation_s.svg-7eb27f8d8325a4077a1b1093288e7f30.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/navigation_s.svg"
+dest_files=["res://.godot/imported/navigation_s.svg-7eb27f8d8325a4077a1b1093288e7f30.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/navigation_se.svg b/Packs/Kenney-cursors/Basic/navigation_se.svg
new file mode 100644
index 0000000..6792d8e
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_se.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/navigation_se.svg.import b/Packs/Kenney-cursors/Basic/navigation_se.svg.import
new file mode 100644
index 0000000..223c281
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_se.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://m5jbo34rx4ra"
+path="res://.godot/imported/navigation_se.svg-cb8a5eab4c33fde03a2a2c0275abc25c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/navigation_se.svg"
+dest_files=["res://.godot/imported/navigation_se.svg-cb8a5eab4c33fde03a2a2c0275abc25c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/navigation_sw.svg b/Packs/Kenney-cursors/Basic/navigation_sw.svg
new file mode 100644
index 0000000..2bb0706
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_sw.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/navigation_sw.svg.import b/Packs/Kenney-cursors/Basic/navigation_sw.svg.import
new file mode 100644
index 0000000..ba5712d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_sw.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cv7th3qal4h1u"
+path="res://.godot/imported/navigation_sw.svg-b0aa99586904881bef75366c81d53594.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/navigation_sw.svg"
+dest_files=["res://.godot/imported/navigation_sw.svg-b0aa99586904881bef75366c81d53594.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/navigation_w.svg b/Packs/Kenney-cursors/Basic/navigation_w.svg
new file mode 100644
index 0000000..7e2ecee
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_w.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/navigation_w.svg.import b/Packs/Kenney-cursors/Basic/navigation_w.svg.import
new file mode 100644
index 0000000..3c928e7
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/navigation_w.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://h68hc27igetb"
+path="res://.godot/imported/navigation_w.svg-24f1699f59f27dc08f998f5e2ea0d52b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/navigation_w.svg"
+dest_files=["res://.godot/imported/navigation_w.svg-24f1699f59f27dc08f998f5e2ea0d52b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_a.svg b/Packs/Kenney-cursors/Basic/pointer_a.svg
new file mode 100644
index 0000000..a789e5f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_a.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_a.svg.import b/Packs/Kenney-cursors/Basic/pointer_a.svg.import
new file mode 100644
index 0000000..246f320
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_a.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://e8mug0g3dws"
+path="res://.godot/imported/pointer_a.svg-25e9d6f5bbf70f6fc7fafd7234ad7ade.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_a.svg"
+dest_files=["res://.godot/imported/pointer_a.svg-25e9d6f5bbf70f6fc7fafd7234ad7ade.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_b.svg b/Packs/Kenney-cursors/Basic/pointer_b.svg
new file mode 100644
index 0000000..c3a0bd5
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_b.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_b.svg.import b/Packs/Kenney-cursors/Basic/pointer_b.svg.import
new file mode 100644
index 0000000..f9fb0dd
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bskdgi08qs1n6"
+path="res://.godot/imported/pointer_b.svg-ea42a9992c296149cc0492bd6f1e9f21.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_b.svg"
+dest_files=["res://.godot/imported/pointer_b.svg-ea42a9992c296149cc0492bd6f1e9f21.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_b_shaded.svg b/Packs/Kenney-cursors/Basic/pointer_b_shaded.svg
new file mode 100644
index 0000000..e603ea9
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_b_shaded.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_b_shaded.svg.import b/Packs/Kenney-cursors/Basic/pointer_b_shaded.svg.import
new file mode 100644
index 0000000..9107c05
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_b_shaded.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://u2vtyf1273x0"
+path="res://.godot/imported/pointer_b_shaded.svg-cea7cbf29c2daba9935bbd06508011b2.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_b_shaded.svg"
+dest_files=["res://.godot/imported/pointer_b_shaded.svg-cea7cbf29c2daba9935bbd06508011b2.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_c.svg b/Packs/Kenney-cursors/Basic/pointer_c.svg
new file mode 100644
index 0000000..fd01b76
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_c.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_c.svg.import b/Packs/Kenney-cursors/Basic/pointer_c.svg.import
new file mode 100644
index 0000000..6f44824
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_c.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dp4vtqekb6iel"
+path="res://.godot/imported/pointer_c.svg-5e784d4691a31ff0e35c110385e5f174.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_c.svg"
+dest_files=["res://.godot/imported/pointer_c.svg-5e784d4691a31ff0e35c110385e5f174.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_c_shaded.svg b/Packs/Kenney-cursors/Basic/pointer_c_shaded.svg
new file mode 100644
index 0000000..9930ea6
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_c_shaded.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_c_shaded.svg.import b/Packs/Kenney-cursors/Basic/pointer_c_shaded.svg.import
new file mode 100644
index 0000000..6b0f7f2
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_c_shaded.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://0lghlc8s2trv"
+path="res://.godot/imported/pointer_c_shaded.svg-fb3db73a21bb3dfe8c145a1c1bfce143.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_c_shaded.svg"
+dest_files=["res://.godot/imported/pointer_c_shaded.svg-fb3db73a21bb3dfe8c145a1c1bfce143.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_d.svg b/Packs/Kenney-cursors/Basic/pointer_d.svg
new file mode 100644
index 0000000..abc433f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_d.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_d.svg.import b/Packs/Kenney-cursors/Basic/pointer_d.svg.import
new file mode 100644
index 0000000..b9965da
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_d.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://vaep2w4k0sl2"
+path="res://.godot/imported/pointer_d.svg-99594e9f7ece7095b55c1175589a426c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_d.svg"
+dest_files=["res://.godot/imported/pointer_d.svg-99594e9f7ece7095b55c1175589a426c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_e.svg b/Packs/Kenney-cursors/Basic/pointer_e.svg
new file mode 100644
index 0000000..d5222c6
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_e.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_e.svg.import b/Packs/Kenney-cursors/Basic/pointer_e.svg.import
new file mode 100644
index 0000000..ece7ab0
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_e.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dejg8y4akukgw"
+path="res://.godot/imported/pointer_e.svg-aacaf84d925ba98e97fc282c31071c8b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_e.svg"
+dest_files=["res://.godot/imported/pointer_e.svg-aacaf84d925ba98e97fc282c31071c8b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_f.svg b/Packs/Kenney-cursors/Basic/pointer_f.svg
new file mode 100644
index 0000000..e8ab1f2
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_f.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_f.svg.import b/Packs/Kenney-cursors/Basic/pointer_f.svg.import
new file mode 100644
index 0000000..b12d067
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_f.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c6csi6ydjgykt"
+path="res://.godot/imported/pointer_f.svg-487ae5548ea652caf3f0ff97f4b1e4aa.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_f.svg"
+dest_files=["res://.godot/imported/pointer_f.svg-487ae5548ea652caf3f0ff97f4b1e4aa.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_g.svg b/Packs/Kenney-cursors/Basic/pointer_g.svg
new file mode 100644
index 0000000..38effdb
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_g.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_g.svg.import b/Packs/Kenney-cursors/Basic/pointer_g.svg.import
new file mode 100644
index 0000000..5b4e14a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_g.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dafbe7hw7kkmo"
+path="res://.godot/imported/pointer_g.svg-49e213206094aa99bca62109c1c10de5.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_g.svg"
+dest_files=["res://.godot/imported/pointer_g.svg-49e213206094aa99bca62109c1c10de5.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_h.svg b/Packs/Kenney-cursors/Basic/pointer_h.svg
new file mode 100644
index 0000000..32254db
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_h.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_h.svg.import b/Packs/Kenney-cursors/Basic/pointer_h.svg.import
new file mode 100644
index 0000000..ef963c7
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_h.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ct5kfs2lae5cr"
+path="res://.godot/imported/pointer_h.svg-4ea68a184901e3a15e0a98cbc6e2d8e0.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_h.svg"
+dest_files=["res://.godot/imported/pointer_h.svg-4ea68a184901e3a15e0a98cbc6e2d8e0.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_i.svg b/Packs/Kenney-cursors/Basic/pointer_i.svg
new file mode 100644
index 0000000..77aff87
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_i.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_i.svg.import b/Packs/Kenney-cursors/Basic/pointer_i.svg.import
new file mode 100644
index 0000000..0329519
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_i.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ba7lauqbejhts"
+path="res://.godot/imported/pointer_i.svg-60fed1de5b4739bdfe1c0ad51f1c4ae3.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_i.svg"
+dest_files=["res://.godot/imported/pointer_i.svg-60fed1de5b4739bdfe1c0ad51f1c4ae3.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_j.svg b/Packs/Kenney-cursors/Basic/pointer_j.svg
new file mode 100644
index 0000000..50c53b0
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_j.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_j.svg.import b/Packs/Kenney-cursors/Basic/pointer_j.svg.import
new file mode 100644
index 0000000..9ac9058
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_j.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://wlvmdfsfpmvv"
+path="res://.godot/imported/pointer_j.svg-39e61b3df565255851f8ed69659d1f1e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_j.svg"
+dest_files=["res://.godot/imported/pointer_j.svg-39e61b3df565255851f8ed69659d1f1e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_k.svg b/Packs/Kenney-cursors/Basic/pointer_k.svg
new file mode 100644
index 0000000..1cd5526
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_k.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_k.svg.import b/Packs/Kenney-cursors/Basic/pointer_k.svg.import
new file mode 100644
index 0000000..b696627
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_k.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c3phno711uw2i"
+path="res://.godot/imported/pointer_k.svg-20bb5b00dca5bcf3a589b97dd8794f62.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_k.svg"
+dest_files=["res://.godot/imported/pointer_k.svg-20bb5b00dca5bcf3a589b97dd8794f62.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_l.svg b/Packs/Kenney-cursors/Basic/pointer_l.svg
new file mode 100644
index 0000000..b18811b
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_l.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_l.svg.import b/Packs/Kenney-cursors/Basic/pointer_l.svg.import
new file mode 100644
index 0000000..10b10b5
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_l.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b4kg1higtkr0c"
+path="res://.godot/imported/pointer_l.svg-6b47a1f0476aa7e2ab2b387c1abab802.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_l.svg"
+dest_files=["res://.godot/imported/pointer_l.svg-6b47a1f0476aa7e2ab2b387c1abab802.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_scifi_a.svg b/Packs/Kenney-cursors/Basic/pointer_scifi_a.svg
new file mode 100644
index 0000000..ced141d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_scifi_a.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_scifi_a.svg.import b/Packs/Kenney-cursors/Basic/pointer_scifi_a.svg.import
new file mode 100644
index 0000000..b830f89
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_scifi_a.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bdxjwdmgxabnw"
+path="res://.godot/imported/pointer_scifi_a.svg-8fd1b1ad4de1e2325aff7ee17cd0a7ea.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_scifi_a.svg"
+dest_files=["res://.godot/imported/pointer_scifi_a.svg-8fd1b1ad4de1e2325aff7ee17cd0a7ea.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_scifi_b.svg b/Packs/Kenney-cursors/Basic/pointer_scifi_b.svg
new file mode 100644
index 0000000..dea6e0f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_scifi_b.svg
@@ -0,0 +1,18 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_scifi_b.svg.import b/Packs/Kenney-cursors/Basic/pointer_scifi_b.svg.import
new file mode 100644
index 0000000..83b153a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_scifi_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ub7nf1rsgid1"
+path="res://.godot/imported/pointer_scifi_b.svg-4a0edfc218e4a9dd7c014fabe1d5139c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_scifi_b.svg"
+dest_files=["res://.godot/imported/pointer_scifi_b.svg-4a0edfc218e4a9dd7c014fabe1d5139c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_toon_a.svg b/Packs/Kenney-cursors/Basic/pointer_toon_a.svg
new file mode 100644
index 0000000..52b472f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_toon_a.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_toon_a.svg.import b/Packs/Kenney-cursors/Basic/pointer_toon_a.svg.import
new file mode 100644
index 0000000..c4bfbdb
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_toon_a.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dr2m0q5t0vtps"
+path="res://.godot/imported/pointer_toon_a.svg-aa742f431a877d7dc689b2e80a9fbe23.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_toon_a.svg"
+dest_files=["res://.godot/imported/pointer_toon_a.svg-aa742f431a877d7dc689b2e80a9fbe23.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/pointer_toon_b.svg b/Packs/Kenney-cursors/Basic/pointer_toon_b.svg
new file mode 100644
index 0000000..6d59078
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_toon_b.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/pointer_toon_b.svg.import b/Packs/Kenney-cursors/Basic/pointer_toon_b.svg.import
new file mode 100644
index 0000000..601dd42
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/pointer_toon_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cxqqsxcvcw555"
+path="res://.godot/imported/pointer_toon_b.svg-9adea2e3c613b9eb013367154f14cec7.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/pointer_toon_b.svg"
+dest_files=["res://.godot/imported/pointer_toon_b.svg-9adea2e3c613b9eb013367154f14cec7.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/progress_CCW_25.svg b/Packs/Kenney-cursors/Basic/progress_CCW_25.svg
new file mode 100644
index 0000000..01df6ae
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_CCW_25.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/progress_CCW_25.svg.import b/Packs/Kenney-cursors/Basic/progress_CCW_25.svg.import
new file mode 100644
index 0000000..b63df2f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_CCW_25.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://clgfx3kd7ltx5"
+path="res://.godot/imported/progress_CCW_25.svg-652820099f98c41d0f3ed803c368ab69.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/progress_CCW_25.svg"
+dest_files=["res://.godot/imported/progress_CCW_25.svg-652820099f98c41d0f3ed803c368ab69.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/progress_CCW_50.svg b/Packs/Kenney-cursors/Basic/progress_CCW_50.svg
new file mode 100644
index 0000000..bb82e8a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_CCW_50.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/progress_CCW_50.svg.import b/Packs/Kenney-cursors/Basic/progress_CCW_50.svg.import
new file mode 100644
index 0000000..2c46fcc
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_CCW_50.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://colqhc481txve"
+path="res://.godot/imported/progress_CCW_50.svg-5760f41dc643064d104620aaa1538ffb.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/progress_CCW_50.svg"
+dest_files=["res://.godot/imported/progress_CCW_50.svg-5760f41dc643064d104620aaa1538ffb.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/progress_CCW_75.svg b/Packs/Kenney-cursors/Basic/progress_CCW_75.svg
new file mode 100644
index 0000000..bcbc578
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_CCW_75.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/progress_CCW_75.svg.import b/Packs/Kenney-cursors/Basic/progress_CCW_75.svg.import
new file mode 100644
index 0000000..90479ab
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_CCW_75.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cxc4qg75hlj30"
+path="res://.godot/imported/progress_CCW_75.svg-ca67131ff436b9ea375517c0eb0e9c7e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/progress_CCW_75.svg"
+dest_files=["res://.godot/imported/progress_CCW_75.svg-ca67131ff436b9ea375517c0eb0e9c7e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/progress_CW_25.svg b/Packs/Kenney-cursors/Basic/progress_CW_25.svg
new file mode 100644
index 0000000..785e6ed
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_CW_25.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/progress_CW_25.svg.import b/Packs/Kenney-cursors/Basic/progress_CW_25.svg.import
new file mode 100644
index 0000000..c552123
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_CW_25.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dk4c20vypx4gr"
+path="res://.godot/imported/progress_CW_25.svg-50307d4a11e53159b30105188e613670.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/progress_CW_25.svg"
+dest_files=["res://.godot/imported/progress_CW_25.svg-50307d4a11e53159b30105188e613670.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/progress_CW_50.svg b/Packs/Kenney-cursors/Basic/progress_CW_50.svg
new file mode 100644
index 0000000..b3af177
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_CW_50.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/progress_CW_50.svg.import b/Packs/Kenney-cursors/Basic/progress_CW_50.svg.import
new file mode 100644
index 0000000..0db2592
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_CW_50.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://btr120ecr45yp"
+path="res://.godot/imported/progress_CW_50.svg-edd5751548d9c551854297838afd5edd.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/progress_CW_50.svg"
+dest_files=["res://.godot/imported/progress_CW_50.svg-edd5751548d9c551854297838afd5edd.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/progress_CW_75.svg b/Packs/Kenney-cursors/Basic/progress_CW_75.svg
new file mode 100644
index 0000000..0571817
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_CW_75.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/progress_CW_75.svg.import b/Packs/Kenney-cursors/Basic/progress_CW_75.svg.import
new file mode 100644
index 0000000..2d2d9cf
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_CW_75.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://d3ruq153vnf62"
+path="res://.godot/imported/progress_CW_75.svg-3c7ee19440f76c3382d8c8f53b537bf3.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/progress_CW_75.svg"
+dest_files=["res://.godot/imported/progress_CW_75.svg-3c7ee19440f76c3382d8c8f53b537bf3.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/progress_empty.svg b/Packs/Kenney-cursors/Basic/progress_empty.svg
new file mode 100644
index 0000000..18b61d4
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_empty.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/progress_empty.svg.import b/Packs/Kenney-cursors/Basic/progress_empty.svg.import
new file mode 100644
index 0000000..bd305ce
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_empty.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c52ch25c8s87d"
+path="res://.godot/imported/progress_empty.svg-f0ef83d7e614f4cc9bc1e73c1e91beaa.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/progress_empty.svg"
+dest_files=["res://.godot/imported/progress_empty.svg-f0ef83d7e614f4cc9bc1e73c1e91beaa.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/progress_full.svg b/Packs/Kenney-cursors/Basic/progress_full.svg
new file mode 100644
index 0000000..c30181d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_full.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/progress_full.svg.import b/Packs/Kenney-cursors/Basic/progress_full.svg.import
new file mode 100644
index 0000000..0d2575a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/progress_full.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bcpfhtstmijul"
+path="res://.godot/imported/progress_full.svg-e8d07057c3c0df80604f0147bc28f3bd.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/progress_full.svg"
+dest_files=["res://.godot/imported/progress_full.svg-e8d07057c3c0df80604f0147bc28f3bd.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_a_cross.svg b/Packs/Kenney-cursors/Basic/resize_a_cross.svg
new file mode 100644
index 0000000..b12a3b5
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_a_cross.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_a_cross.svg.import b/Packs/Kenney-cursors/Basic/resize_a_cross.svg.import
new file mode 100644
index 0000000..12815e0
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_a_cross.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ts5mp5xuvvow"
+path="res://.godot/imported/resize_a_cross.svg-aebce067647019e3c7b1988eba6fd61b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_a_cross.svg"
+dest_files=["res://.godot/imported/resize_a_cross.svg-aebce067647019e3c7b1988eba6fd61b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_a_cross_diagonal.svg b/Packs/Kenney-cursors/Basic/resize_a_cross_diagonal.svg
new file mode 100644
index 0000000..e8fb735
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_a_cross_diagonal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_a_cross_diagonal.svg.import b/Packs/Kenney-cursors/Basic/resize_a_cross_diagonal.svg.import
new file mode 100644
index 0000000..ab1b8b8
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_a_cross_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://d0y4kiu5mn8bp"
+path="res://.godot/imported/resize_a_cross_diagonal.svg-eb1c431db377e416f76d96430abd0b00.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_a_cross_diagonal.svg"
+dest_files=["res://.godot/imported/resize_a_cross_diagonal.svg-eb1c431db377e416f76d96430abd0b00.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_a_diagonal.svg b/Packs/Kenney-cursors/Basic/resize_a_diagonal.svg
new file mode 100644
index 0000000..32b8095
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_a_diagonal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_a_diagonal.svg.import b/Packs/Kenney-cursors/Basic/resize_a_diagonal.svg.import
new file mode 100644
index 0000000..2e3c6cc
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_a_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://yh0deb6mhyu2"
+path="res://.godot/imported/resize_a_diagonal.svg-a8f4b34a26d39e516eb1dbdbe8ec00b9.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_a_diagonal.svg"
+dest_files=["res://.godot/imported/resize_a_diagonal.svg-a8f4b34a26d39e516eb1dbdbe8ec00b9.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_a_diagonal_mirror.svg b/Packs/Kenney-cursors/Basic/resize_a_diagonal_mirror.svg
new file mode 100644
index 0000000..8145c01
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_a_diagonal_mirror.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_a_diagonal_mirror.svg.import b/Packs/Kenney-cursors/Basic/resize_a_diagonal_mirror.svg.import
new file mode 100644
index 0000000..24f8ec6
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_a_diagonal_mirror.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cvg5d5argbwpj"
+path="res://.godot/imported/resize_a_diagonal_mirror.svg-9f52110ae4fd9f1a5bc9b56bf3dc825a.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_a_diagonal_mirror.svg"
+dest_files=["res://.godot/imported/resize_a_diagonal_mirror.svg-9f52110ae4fd9f1a5bc9b56bf3dc825a.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_a_horizontal.svg b/Packs/Kenney-cursors/Basic/resize_a_horizontal.svg
new file mode 100644
index 0000000..ea7f48e
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_a_horizontal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_a_horizontal.svg.import b/Packs/Kenney-cursors/Basic/resize_a_horizontal.svg.import
new file mode 100644
index 0000000..1004473
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_a_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://mgialhjjpi6r"
+path="res://.godot/imported/resize_a_horizontal.svg-80a814608368a2c28bc65f55338a9ff2.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_a_horizontal.svg"
+dest_files=["res://.godot/imported/resize_a_horizontal.svg-80a814608368a2c28bc65f55338a9ff2.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_a_vertical.svg b/Packs/Kenney-cursors/Basic/resize_a_vertical.svg
new file mode 100644
index 0000000..cfa45f8
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_a_vertical.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_a_vertical.svg.import b/Packs/Kenney-cursors/Basic/resize_a_vertical.svg.import
new file mode 100644
index 0000000..ae4fd85
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_a_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://u4vmy5xvb28b"
+path="res://.godot/imported/resize_a_vertical.svg-12aeed639ef4ae6d73362ed0417a1341.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_a_vertical.svg"
+dest_files=["res://.godot/imported/resize_a_vertical.svg-12aeed639ef4ae6d73362ed0417a1341.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_b_cross.svg b/Packs/Kenney-cursors/Basic/resize_b_cross.svg
new file mode 100644
index 0000000..f297182
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_b_cross.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_b_cross.svg.import b/Packs/Kenney-cursors/Basic/resize_b_cross.svg.import
new file mode 100644
index 0000000..e66da9a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_b_cross.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bjhew7c687b4a"
+path="res://.godot/imported/resize_b_cross.svg-783a031435405a139b079246cb3bb01b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_b_cross.svg"
+dest_files=["res://.godot/imported/resize_b_cross.svg-783a031435405a139b079246cb3bb01b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_b_cross_diagonal.svg b/Packs/Kenney-cursors/Basic/resize_b_cross_diagonal.svg
new file mode 100644
index 0000000..8079852
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_b_cross_diagonal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_b_cross_diagonal.svg.import b/Packs/Kenney-cursors/Basic/resize_b_cross_diagonal.svg.import
new file mode 100644
index 0000000..71b2602
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_b_cross_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b700gygo76stu"
+path="res://.godot/imported/resize_b_cross_diagonal.svg-3621fcce8eeb4e9b8f29b1477912473c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_b_cross_diagonal.svg"
+dest_files=["res://.godot/imported/resize_b_cross_diagonal.svg-3621fcce8eeb4e9b8f29b1477912473c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_b_diagonal.svg b/Packs/Kenney-cursors/Basic/resize_b_diagonal.svg
new file mode 100644
index 0000000..063be43
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_b_diagonal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_b_diagonal.svg.import b/Packs/Kenney-cursors/Basic/resize_b_diagonal.svg.import
new file mode 100644
index 0000000..3ea07a3
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_b_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c5n0xww5v4duy"
+path="res://.godot/imported/resize_b_diagonal.svg-f1bad096c4f0b469cc922cf1c463f245.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_b_diagonal.svg"
+dest_files=["res://.godot/imported/resize_b_diagonal.svg-f1bad096c4f0b469cc922cf1c463f245.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_b_diagonal_mirror.svg b/Packs/Kenney-cursors/Basic/resize_b_diagonal_mirror.svg
new file mode 100644
index 0000000..8424bb7
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_b_diagonal_mirror.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_b_diagonal_mirror.svg.import b/Packs/Kenney-cursors/Basic/resize_b_diagonal_mirror.svg.import
new file mode 100644
index 0000000..1d70c63
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_b_diagonal_mirror.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b87x3qy3w151r"
+path="res://.godot/imported/resize_b_diagonal_mirror.svg-a1710595c76a2fae7a6553b45cda6f9d.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_b_diagonal_mirror.svg"
+dest_files=["res://.godot/imported/resize_b_diagonal_mirror.svg-a1710595c76a2fae7a6553b45cda6f9d.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_b_horizontal.svg b/Packs/Kenney-cursors/Basic/resize_b_horizontal.svg
new file mode 100644
index 0000000..19dcb34
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_b_horizontal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_b_horizontal.svg.import b/Packs/Kenney-cursors/Basic/resize_b_horizontal.svg.import
new file mode 100644
index 0000000..656c2cf
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_b_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://xkwbc88ixhhx"
+path="res://.godot/imported/resize_b_horizontal.svg-8e3050edcfec83d686df725ced65d97f.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_b_horizontal.svg"
+dest_files=["res://.godot/imported/resize_b_horizontal.svg-8e3050edcfec83d686df725ced65d97f.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_b_vertical.svg b/Packs/Kenney-cursors/Basic/resize_b_vertical.svg
new file mode 100644
index 0000000..2b1c039
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_b_vertical.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_b_vertical.svg.import b/Packs/Kenney-cursors/Basic/resize_b_vertical.svg.import
new file mode 100644
index 0000000..6ebd3fb
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_b_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://0e01udirgp8a"
+path="res://.godot/imported/resize_b_vertical.svg-c8162efbe493d59733d67e1a67beb879.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_b_vertical.svg"
+dest_files=["res://.godot/imported/resize_b_vertical.svg-c8162efbe493d59733d67e1a67beb879.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_c_cross.svg b/Packs/Kenney-cursors/Basic/resize_c_cross.svg
new file mode 100644
index 0000000..eff9953
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_c_cross.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_c_cross.svg.import b/Packs/Kenney-cursors/Basic/resize_c_cross.svg.import
new file mode 100644
index 0000000..61cd6fc
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_c_cross.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ha7opugn0gsd"
+path="res://.godot/imported/resize_c_cross.svg-3b82a13c7be335d7ca034e70139ec1e8.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_c_cross.svg"
+dest_files=["res://.godot/imported/resize_c_cross.svg-3b82a13c7be335d7ca034e70139ec1e8.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_c_cross_diagonal.svg b/Packs/Kenney-cursors/Basic/resize_c_cross_diagonal.svg
new file mode 100644
index 0000000..db7750b
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_c_cross_diagonal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_c_cross_diagonal.svg.import b/Packs/Kenney-cursors/Basic/resize_c_cross_diagonal.svg.import
new file mode 100644
index 0000000..3113016
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_c_cross_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://pqlp7bdwnr0w"
+path="res://.godot/imported/resize_c_cross_diagonal.svg-5909b8bc68f7869409d21dba1ab8c52b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_c_cross_diagonal.svg"
+dest_files=["res://.godot/imported/resize_c_cross_diagonal.svg-5909b8bc68f7869409d21dba1ab8c52b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_c_diagonal.svg b/Packs/Kenney-cursors/Basic/resize_c_diagonal.svg
new file mode 100644
index 0000000..a1d5db9
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_c_diagonal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_c_diagonal.svg.import b/Packs/Kenney-cursors/Basic/resize_c_diagonal.svg.import
new file mode 100644
index 0000000..92259ec
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_c_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://25ru32nsysih"
+path="res://.godot/imported/resize_c_diagonal.svg-6244afa3874c4d3cf3ea6e1c770de0c2.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_c_diagonal.svg"
+dest_files=["res://.godot/imported/resize_c_diagonal.svg-6244afa3874c4d3cf3ea6e1c770de0c2.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_c_diagonal_mirror.svg b/Packs/Kenney-cursors/Basic/resize_c_diagonal_mirror.svg
new file mode 100644
index 0000000..91d3407
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_c_diagonal_mirror.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_c_diagonal_mirror.svg.import b/Packs/Kenney-cursors/Basic/resize_c_diagonal_mirror.svg.import
new file mode 100644
index 0000000..c7ba862
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_c_diagonal_mirror.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bbimya502x7y"
+path="res://.godot/imported/resize_c_diagonal_mirror.svg-874b3e8dde9b00962cf6b331c2a7f516.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_c_diagonal_mirror.svg"
+dest_files=["res://.godot/imported/resize_c_diagonal_mirror.svg-874b3e8dde9b00962cf6b331c2a7f516.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_c_horizontal.svg b/Packs/Kenney-cursors/Basic/resize_c_horizontal.svg
new file mode 100644
index 0000000..dcd6ad2
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_c_horizontal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_c_horizontal.svg.import b/Packs/Kenney-cursors/Basic/resize_c_horizontal.svg.import
new file mode 100644
index 0000000..a4a7fdd
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_c_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c3o580113dlf1"
+path="res://.godot/imported/resize_c_horizontal.svg-318ae4f6cb4c46f0f0ec53bb47cf395e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_c_horizontal.svg"
+dest_files=["res://.godot/imported/resize_c_horizontal.svg-318ae4f6cb4c46f0f0ec53bb47cf395e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_c_vertical.svg b/Packs/Kenney-cursors/Basic/resize_c_vertical.svg
new file mode 100644
index 0000000..7cfbd6d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_c_vertical.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_c_vertical.svg.import b/Packs/Kenney-cursors/Basic/resize_c_vertical.svg.import
new file mode 100644
index 0000000..54c5784
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_c_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bu7uinn4nq1ww"
+path="res://.godot/imported/resize_c_vertical.svg-cfdacef0d481823bf86c5e520cb333e6.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_c_vertical.svg"
+dest_files=["res://.godot/imported/resize_c_vertical.svg-cfdacef0d481823bf86c5e520cb333e6.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_d_cross.svg b/Packs/Kenney-cursors/Basic/resize_d_cross.svg
new file mode 100644
index 0000000..0afc3c5
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_d_cross.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_d_cross.svg.import b/Packs/Kenney-cursors/Basic/resize_d_cross.svg.import
new file mode 100644
index 0000000..3893503
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_d_cross.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cpp1qhugiykhh"
+path="res://.godot/imported/resize_d_cross.svg-4bd454206de70f4688dd2f23ae5800a6.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_d_cross.svg"
+dest_files=["res://.godot/imported/resize_d_cross.svg-4bd454206de70f4688dd2f23ae5800a6.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_d_cross_diagonal.svg b/Packs/Kenney-cursors/Basic/resize_d_cross_diagonal.svg
new file mode 100644
index 0000000..0d4f0ff
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_d_cross_diagonal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_d_cross_diagonal.svg.import b/Packs/Kenney-cursors/Basic/resize_d_cross_diagonal.svg.import
new file mode 100644
index 0000000..5622ab4
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_d_cross_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://wr78dj1bu7m8"
+path="res://.godot/imported/resize_d_cross_diagonal.svg-a40175d1d9029d592edee6bdb8990c3e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_d_cross_diagonal.svg"
+dest_files=["res://.godot/imported/resize_d_cross_diagonal.svg-a40175d1d9029d592edee6bdb8990c3e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_d_diagonal.svg b/Packs/Kenney-cursors/Basic/resize_d_diagonal.svg
new file mode 100644
index 0000000..d2b025d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_d_diagonal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_d_diagonal.svg.import b/Packs/Kenney-cursors/Basic/resize_d_diagonal.svg.import
new file mode 100644
index 0000000..814aaa1
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_d_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bltvltxxfc8fq"
+path="res://.godot/imported/resize_d_diagonal.svg-f25dde2ead12ee4f2b460f1ab81ea421.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_d_diagonal.svg"
+dest_files=["res://.godot/imported/resize_d_diagonal.svg-f25dde2ead12ee4f2b460f1ab81ea421.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_d_diagonal_mirror.svg b/Packs/Kenney-cursors/Basic/resize_d_diagonal_mirror.svg
new file mode 100644
index 0000000..41f4e90
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_d_diagonal_mirror.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_d_diagonal_mirror.svg.import b/Packs/Kenney-cursors/Basic/resize_d_diagonal_mirror.svg.import
new file mode 100644
index 0000000..96c65da
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_d_diagonal_mirror.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://wfxxgrhmr30c"
+path="res://.godot/imported/resize_d_diagonal_mirror.svg-1ff0017297f2000e4d68dac5daee95c9.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_d_diagonal_mirror.svg"
+dest_files=["res://.godot/imported/resize_d_diagonal_mirror.svg-1ff0017297f2000e4d68dac5daee95c9.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_d_horizontal.svg b/Packs/Kenney-cursors/Basic/resize_d_horizontal.svg
new file mode 100644
index 0000000..be0cbb7
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_d_horizontal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_d_horizontal.svg.import b/Packs/Kenney-cursors/Basic/resize_d_horizontal.svg.import
new file mode 100644
index 0000000..835da06
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_d_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dtnac38nqyl6x"
+path="res://.godot/imported/resize_d_horizontal.svg-b87b6431c02526878eb4363c511fdba9.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_d_horizontal.svg"
+dest_files=["res://.godot/imported/resize_d_horizontal.svg-b87b6431c02526878eb4363c511fdba9.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_d_vertical.svg b/Packs/Kenney-cursors/Basic/resize_d_vertical.svg
new file mode 100644
index 0000000..bffbd85
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_d_vertical.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_d_vertical.svg.import b/Packs/Kenney-cursors/Basic/resize_d_vertical.svg.import
new file mode 100644
index 0000000..a0d7e94
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_d_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dvdviu01n5t0s"
+path="res://.godot/imported/resize_d_vertical.svg-7eff629038d9f89f6145cc0140f47bbc.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_d_vertical.svg"
+dest_files=["res://.godot/imported/resize_d_vertical.svg-7eff629038d9f89f6145cc0140f47bbc.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_e_cross.svg b/Packs/Kenney-cursors/Basic/resize_e_cross.svg
new file mode 100644
index 0000000..143a2c0
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_e_cross.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_e_cross.svg.import b/Packs/Kenney-cursors/Basic/resize_e_cross.svg.import
new file mode 100644
index 0000000..f6b206d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_e_cross.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://brxtf5whfro60"
+path="res://.godot/imported/resize_e_cross.svg-dbf32fe9f66ae1fed48b3f9b090bf3fa.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_e_cross.svg"
+dest_files=["res://.godot/imported/resize_e_cross.svg-dbf32fe9f66ae1fed48b3f9b090bf3fa.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_e_cross_diagonal.svg b/Packs/Kenney-cursors/Basic/resize_e_cross_diagonal.svg
new file mode 100644
index 0000000..cabd0f3
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_e_cross_diagonal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_e_cross_diagonal.svg.import b/Packs/Kenney-cursors/Basic/resize_e_cross_diagonal.svg.import
new file mode 100644
index 0000000..4bd0653
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_e_cross_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://0co3voatat1u"
+path="res://.godot/imported/resize_e_cross_diagonal.svg-1cdfeea502abfed8608cff37e35290c8.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_e_cross_diagonal.svg"
+dest_files=["res://.godot/imported/resize_e_cross_diagonal.svg-1cdfeea502abfed8608cff37e35290c8.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_e_diagonal.svg b/Packs/Kenney-cursors/Basic/resize_e_diagonal.svg
new file mode 100644
index 0000000..968009b
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_e_diagonal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_e_diagonal.svg.import b/Packs/Kenney-cursors/Basic/resize_e_diagonal.svg.import
new file mode 100644
index 0000000..4261b0b
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_e_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cpqyhbyni0nqx"
+path="res://.godot/imported/resize_e_diagonal.svg-3865fbcde01b72c152e73a2cd9249f19.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_e_diagonal.svg"
+dest_files=["res://.godot/imported/resize_e_diagonal.svg-3865fbcde01b72c152e73a2cd9249f19.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_e_diagonal_mirror.svg b/Packs/Kenney-cursors/Basic/resize_e_diagonal_mirror.svg
new file mode 100644
index 0000000..8d24249
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_e_diagonal_mirror.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_e_diagonal_mirror.svg.import b/Packs/Kenney-cursors/Basic/resize_e_diagonal_mirror.svg.import
new file mode 100644
index 0000000..be03da4
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_e_diagonal_mirror.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dmhhs7ybcbyrk"
+path="res://.godot/imported/resize_e_diagonal_mirror.svg-270c4e2ab3c0f31e5061b29b5d31b0ab.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_e_diagonal_mirror.svg"
+dest_files=["res://.godot/imported/resize_e_diagonal_mirror.svg-270c4e2ab3c0f31e5061b29b5d31b0ab.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_e_horizontal.svg b/Packs/Kenney-cursors/Basic/resize_e_horizontal.svg
new file mode 100644
index 0000000..d95fc53
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_e_horizontal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_e_horizontal.svg.import b/Packs/Kenney-cursors/Basic/resize_e_horizontal.svg.import
new file mode 100644
index 0000000..1e07a65
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_e_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cf6rsaaprxre2"
+path="res://.godot/imported/resize_e_horizontal.svg-88698195cfea7a9f255e1be32a135391.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_e_horizontal.svg"
+dest_files=["res://.godot/imported/resize_e_horizontal.svg-88698195cfea7a9f255e1be32a135391.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_e_vertical.svg b/Packs/Kenney-cursors/Basic/resize_e_vertical.svg
new file mode 100644
index 0000000..987ccb4
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_e_vertical.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_e_vertical.svg.import b/Packs/Kenney-cursors/Basic/resize_e_vertical.svg.import
new file mode 100644
index 0000000..d9dd92e
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_e_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bjdb60cer8x3a"
+path="res://.godot/imported/resize_e_vertical.svg-1cd1e8e97b9ad6a5303199a397f86fcc.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_e_vertical.svg"
+dest_files=["res://.godot/imported/resize_e_vertical.svg-1cd1e8e97b9ad6a5303199a397f86fcc.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_horizontal.svg b/Packs/Kenney-cursors/Basic/resize_horizontal.svg
new file mode 100644
index 0000000..bf56277
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_horizontal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_horizontal.svg.import b/Packs/Kenney-cursors/Basic/resize_horizontal.svg.import
new file mode 100644
index 0000000..ecd381f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://brnjfcijrx6jd"
+path="res://.godot/imported/resize_horizontal.svg-9076febe904ce68bf4dc2dd7222f721c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_horizontal.svg"
+dest_files=["res://.godot/imported/resize_horizontal.svg-9076febe904ce68bf4dc2dd7222f721c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/resize_vertical.svg b/Packs/Kenney-cursors/Basic/resize_vertical.svg
new file mode 100644
index 0000000..b6cc25c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_vertical.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/resize_vertical.svg.import b/Packs/Kenney-cursors/Basic/resize_vertical.svg.import
new file mode 100644
index 0000000..5aea18c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/resize_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cs72jwtwkn8u6"
+path="res://.godot/imported/resize_vertical.svg-37db80be0b97853469d7742b7c93c783.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/resize_vertical.svg"
+dest_files=["res://.godot/imported/resize_vertical.svg-37db80be0b97853469d7742b7c93c783.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/rotate_ccw.svg b/Packs/Kenney-cursors/Basic/rotate_ccw.svg
new file mode 100644
index 0000000..ae7c459
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/rotate_ccw.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/rotate_ccw.svg.import b/Packs/Kenney-cursors/Basic/rotate_ccw.svg.import
new file mode 100644
index 0000000..50748d7
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/rotate_ccw.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dg2glcheycvsj"
+path="res://.godot/imported/rotate_ccw.svg-c4ef453802b8a3bebaa3cad296f78264.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/rotate_ccw.svg"
+dest_files=["res://.godot/imported/rotate_ccw.svg-c4ef453802b8a3bebaa3cad296f78264.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/rotate_cw.svg b/Packs/Kenney-cursors/Basic/rotate_cw.svg
new file mode 100644
index 0000000..5fb60b4
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/rotate_cw.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/rotate_cw.svg.import b/Packs/Kenney-cursors/Basic/rotate_cw.svg.import
new file mode 100644
index 0000000..4b0c811
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/rotate_cw.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dv8ghj5jfbi25"
+path="res://.godot/imported/rotate_cw.svg-29ab88602450f0852f3a8483c03f6b64.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/rotate_cw.svg"
+dest_files=["res://.godot/imported/rotate_cw.svg-29ab88602450f0852f3a8483c03f6b64.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/rotate_horizontal_down.svg b/Packs/Kenney-cursors/Basic/rotate_horizontal_down.svg
new file mode 100644
index 0000000..c4109b3
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/rotate_horizontal_down.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/rotate_horizontal_down.svg.import b/Packs/Kenney-cursors/Basic/rotate_horizontal_down.svg.import
new file mode 100644
index 0000000..1a7bd4c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/rotate_horizontal_down.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b61v2p1c5srjp"
+path="res://.godot/imported/rotate_horizontal_down.svg-f341468bbcf3f128b4736f0734fac3aa.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/rotate_horizontal_down.svg"
+dest_files=["res://.godot/imported/rotate_horizontal_down.svg-f341468bbcf3f128b4736f0734fac3aa.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/rotate_horizontal_up.svg b/Packs/Kenney-cursors/Basic/rotate_horizontal_up.svg
new file mode 100644
index 0000000..f762704
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/rotate_horizontal_up.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/rotate_horizontal_up.svg.import b/Packs/Kenney-cursors/Basic/rotate_horizontal_up.svg.import
new file mode 100644
index 0000000..b9c7b88
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/rotate_horizontal_up.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bqbbjtvyixs7j"
+path="res://.godot/imported/rotate_horizontal_up.svg-c0e7873ebae2bbbf194827d03be2613d.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/rotate_horizontal_up.svg"
+dest_files=["res://.godot/imported/rotate_horizontal_up.svg-c0e7873ebae2bbbf194827d03be2613d.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/stairs.svg b/Packs/Kenney-cursors/Basic/stairs.svg
new file mode 100644
index 0000000..19e9bd9
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/stairs.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/stairs.svg.import b/Packs/Kenney-cursors/Basic/stairs.svg.import
new file mode 100644
index 0000000..d72fd32
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/stairs.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dnhotp4xefy1n"
+path="res://.godot/imported/stairs.svg-1061aebdd54d29566233589538147389.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/stairs.svg"
+dest_files=["res://.godot/imported/stairs.svg-1061aebdd54d29566233589538147389.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/stairs_down.svg b/Packs/Kenney-cursors/Basic/stairs_down.svg
new file mode 100644
index 0000000..674d48a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/stairs_down.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/stairs_down.svg.import b/Packs/Kenney-cursors/Basic/stairs_down.svg.import
new file mode 100644
index 0000000..5d4fa65
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/stairs_down.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b8i7edd7pk0jj"
+path="res://.godot/imported/stairs_down.svg-da07866dfb31188b03aa5a4fbc6dbb81.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/stairs_down.svg"
+dest_files=["res://.godot/imported/stairs_down.svg-da07866dfb31188b03aa5a4fbc6dbb81.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/stairs_up.svg b/Packs/Kenney-cursors/Basic/stairs_up.svg
new file mode 100644
index 0000000..997ce76
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/stairs_up.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/stairs_up.svg.import b/Packs/Kenney-cursors/Basic/stairs_up.svg.import
new file mode 100644
index 0000000..0d9d9fc
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/stairs_up.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cfoet7ah575fs"
+path="res://.godot/imported/stairs_up.svg-626349087c528acb1cabacf533811a6f.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/stairs_up.svg"
+dest_files=["res://.godot/imported/stairs_up.svg-626349087c528acb1cabacf533811a6f.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/steps.svg b/Packs/Kenney-cursors/Basic/steps.svg
new file mode 100644
index 0000000..4a6ad86
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/steps.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/steps.svg.import b/Packs/Kenney-cursors/Basic/steps.svg.import
new file mode 100644
index 0000000..b0b873c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/steps.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bqotkcykrbcrm"
+path="res://.godot/imported/steps.svg-631f9c3fa9233aedd775f3b83135eef8.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/steps.svg"
+dest_files=["res://.godot/imported/steps.svg-631f9c3fa9233aedd775f3b83135eef8.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/target_a.svg b/Packs/Kenney-cursors/Basic/target_a.svg
new file mode 100644
index 0000000..08a278c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/target_a.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/target_a.svg.import b/Packs/Kenney-cursors/Basic/target_a.svg.import
new file mode 100644
index 0000000..663cd33
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/target_a.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://be18p6qsbuxsg"
+path="res://.godot/imported/target_a.svg-3e708d469079363520d8c68ce68f0828.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/target_a.svg"
+dest_files=["res://.godot/imported/target_a.svg-3e708d469079363520d8c68ce68f0828.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/target_b.svg b/Packs/Kenney-cursors/Basic/target_b.svg
new file mode 100644
index 0000000..25e9a39
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/target_b.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/target_b.svg.import b/Packs/Kenney-cursors/Basic/target_b.svg.import
new file mode 100644
index 0000000..99c8b7f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/target_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bq6arjyoes0as"
+path="res://.godot/imported/target_b.svg-b9caabcbd69b23a1da3faf08bad83f7a.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/target_b.svg"
+dest_files=["res://.godot/imported/target_b.svg-b9caabcbd69b23a1da3faf08bad83f7a.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/target_round_a.svg b/Packs/Kenney-cursors/Basic/target_round_a.svg
new file mode 100644
index 0000000..fbeab36
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/target_round_a.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/target_round_a.svg.import b/Packs/Kenney-cursors/Basic/target_round_a.svg.import
new file mode 100644
index 0000000..281e1f8
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/target_round_a.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bw3fikp76gmbi"
+path="res://.godot/imported/target_round_a.svg-50b13d8915f7eab6155061f6296e3144.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/target_round_a.svg"
+dest_files=["res://.godot/imported/target_round_a.svg-50b13d8915f7eab6155061f6296e3144.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/target_round_b.svg b/Packs/Kenney-cursors/Basic/target_round_b.svg
new file mode 100644
index 0000000..71d9d4f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/target_round_b.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/target_round_b.svg.import b/Packs/Kenney-cursors/Basic/target_round_b.svg.import
new file mode 100644
index 0000000..ddc5b6f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/target_round_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cp53i63n2ncrv"
+path="res://.godot/imported/target_round_b.svg-6411803e3206c018f83afa801291c23c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/target_round_b.svg"
+dest_files=["res://.godot/imported/target_round_b.svg-6411803e3206c018f83afa801291c23c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tool_axe.svg b/Packs/Kenney-cursors/Basic/tool_axe.svg
new file mode 100644
index 0000000..df23b6a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_axe.svg
@@ -0,0 +1,22 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tool_axe.svg.import b/Packs/Kenney-cursors/Basic/tool_axe.svg.import
new file mode 100644
index 0000000..bea47dd
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_axe.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://doriouw7r24y6"
+path="res://.godot/imported/tool_axe.svg-2af3ac55c4b8412806f853c425411e78.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tool_axe.svg"
+dest_files=["res://.godot/imported/tool_axe.svg-2af3ac55c4b8412806f853c425411e78.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tool_axe_single.svg b/Packs/Kenney-cursors/Basic/tool_axe_single.svg
new file mode 100644
index 0000000..0524a20
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_axe_single.svg
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tool_axe_single.svg.import b/Packs/Kenney-cursors/Basic/tool_axe_single.svg.import
new file mode 100644
index 0000000..eb560fe
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_axe_single.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bvkg06k8eo221"
+path="res://.godot/imported/tool_axe_single.svg-b532c53387e06735561cf9a16c613f77.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tool_axe_single.svg"
+dest_files=["res://.godot/imported/tool_axe_single.svg-b532c53387e06735561cf9a16c613f77.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tool_bomb.svg b/Packs/Kenney-cursors/Basic/tool_bomb.svg
new file mode 100644
index 0000000..68c004e
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_bomb.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tool_bomb.svg.import b/Packs/Kenney-cursors/Basic/tool_bomb.svg.import
new file mode 100644
index 0000000..dbb03f0
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_bomb.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://llq2mmhl7klf"
+path="res://.godot/imported/tool_bomb.svg-3c4041135091893590a26f11117f760c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tool_bomb.svg"
+dest_files=["res://.godot/imported/tool_bomb.svg-3c4041135091893590a26f11117f760c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tool_bow.svg b/Packs/Kenney-cursors/Basic/tool_bow.svg
new file mode 100644
index 0000000..367e0a2
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_bow.svg
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tool_bow.svg.import b/Packs/Kenney-cursors/Basic/tool_bow.svg.import
new file mode 100644
index 0000000..6258e28
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_bow.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://brmes0imhdpf0"
+path="res://.godot/imported/tool_bow.svg-1a90e4838321feb62a7139e769f33442.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tool_bow.svg"
+dest_files=["res://.godot/imported/tool_bow.svg-1a90e4838321feb62a7139e769f33442.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tool_hammer.svg b/Packs/Kenney-cursors/Basic/tool_hammer.svg
new file mode 100644
index 0000000..97c9d8f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_hammer.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tool_hammer.svg.import b/Packs/Kenney-cursors/Basic/tool_hammer.svg.import
new file mode 100644
index 0000000..0e0ca3a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_hammer.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cf5ltm24d8dtu"
+path="res://.godot/imported/tool_hammer.svg-0b0abe2e61e04a1abe2c53bc60848229.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tool_hammer.svg"
+dest_files=["res://.godot/imported/tool_hammer.svg-0b0abe2e61e04a1abe2c53bc60848229.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tool_hoe.svg b/Packs/Kenney-cursors/Basic/tool_hoe.svg
new file mode 100644
index 0000000..f90d986
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_hoe.svg
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tool_hoe.svg.import b/Packs/Kenney-cursors/Basic/tool_hoe.svg.import
new file mode 100644
index 0000000..eac15ad
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_hoe.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bd77he6j4vjqq"
+path="res://.godot/imported/tool_hoe.svg-e484e26fed9244a2848b8760556c2644.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tool_hoe.svg"
+dest_files=["res://.godot/imported/tool_hoe.svg-e484e26fed9244a2848b8760556c2644.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tool_pickaxe.svg b/Packs/Kenney-cursors/Basic/tool_pickaxe.svg
new file mode 100644
index 0000000..86d50dd
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_pickaxe.svg
@@ -0,0 +1,22 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tool_pickaxe.svg.import b/Packs/Kenney-cursors/Basic/tool_pickaxe.svg.import
new file mode 100644
index 0000000..57dbeaf
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_pickaxe.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dbq55468561sf"
+path="res://.godot/imported/tool_pickaxe.svg-f415b06c5459da3165f3dfaa804e4ee6.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tool_pickaxe.svg"
+dest_files=["res://.godot/imported/tool_pickaxe.svg-f415b06c5459da3165f3dfaa804e4ee6.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tool_shovel.svg b/Packs/Kenney-cursors/Basic/tool_shovel.svg
new file mode 100644
index 0000000..88f5538
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_shovel.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tool_shovel.svg.import b/Packs/Kenney-cursors/Basic/tool_shovel.svg.import
new file mode 100644
index 0000000..e8ddc9a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_shovel.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dg14d7oj5y1nq"
+path="res://.godot/imported/tool_shovel.svg-aaabdab1f7a8d981558dce0da18dbd29.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tool_shovel.svg"
+dest_files=["res://.godot/imported/tool_shovel.svg-aaabdab1f7a8d981558dce0da18dbd29.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tool_sword_a.svg b/Packs/Kenney-cursors/Basic/tool_sword_a.svg
new file mode 100644
index 0000000..108fc1a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_sword_a.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tool_sword_a.svg.import b/Packs/Kenney-cursors/Basic/tool_sword_a.svg.import
new file mode 100644
index 0000000..c480b7b
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_sword_a.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cgjvusulglgys"
+path="res://.godot/imported/tool_sword_a.svg-3eadb70ff02bc6668945aeb0f1515207.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tool_sword_a.svg"
+dest_files=["res://.godot/imported/tool_sword_a.svg-3eadb70ff02bc6668945aeb0f1515207.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tool_sword_b.svg b/Packs/Kenney-cursors/Basic/tool_sword_b.svg
new file mode 100644
index 0000000..fb2c95a
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_sword_b.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tool_sword_b.svg.import b/Packs/Kenney-cursors/Basic/tool_sword_b.svg.import
new file mode 100644
index 0000000..10e13ba
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_sword_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://yahc0o0qtcfu"
+path="res://.godot/imported/tool_sword_b.svg-29dd35ace77ccbbef9ef9e1a257ae87e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tool_sword_b.svg"
+dest_files=["res://.godot/imported/tool_sword_b.svg-29dd35ace77ccbbef9ef9e1a257ae87e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tool_torch.svg b/Packs/Kenney-cursors/Basic/tool_torch.svg
new file mode 100644
index 0000000..ba09a01
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_torch.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tool_torch.svg.import b/Packs/Kenney-cursors/Basic/tool_torch.svg.import
new file mode 100644
index 0000000..f783842
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_torch.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://4bvjfpochgvf"
+path="res://.godot/imported/tool_torch.svg-6f86dcef8bab839c9d6db5da5a83105a.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tool_torch.svg"
+dest_files=["res://.godot/imported/tool_torch.svg-6f86dcef8bab839c9d6db5da5a83105a.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tool_wand.svg b/Packs/Kenney-cursors/Basic/tool_wand.svg
new file mode 100644
index 0000000..1c67781
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_wand.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tool_wand.svg.import b/Packs/Kenney-cursors/Basic/tool_wand.svg.import
new file mode 100644
index 0000000..58e0163
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_wand.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c3151l2twxl4v"
+path="res://.godot/imported/tool_wand.svg-deffc0ef5151384a61f4563206234216.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tool_wand.svg"
+dest_files=["res://.godot/imported/tool_wand.svg-deffc0ef5151384a61f4563206234216.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tool_watering_can.svg b/Packs/Kenney-cursors/Basic/tool_watering_can.svg
new file mode 100644
index 0000000..a3bd59f
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_watering_can.svg
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tool_watering_can.svg.import b/Packs/Kenney-cursors/Basic/tool_watering_can.svg.import
new file mode 100644
index 0000000..2ea21f8
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_watering_can.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bcbfvx8dnh4qq"
+path="res://.godot/imported/tool_watering_can.svg-19fce238d55ad27b130cc1841ed56ce9.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tool_watering_can.svg"
+dest_files=["res://.godot/imported/tool_watering_can.svg-19fce238d55ad27b130cc1841ed56ce9.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tool_wrench.svg b/Packs/Kenney-cursors/Basic/tool_wrench.svg
new file mode 100644
index 0000000..a7a908d
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_wrench.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tool_wrench.svg.import b/Packs/Kenney-cursors/Basic/tool_wrench.svg.import
new file mode 100644
index 0000000..2d686d3
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tool_wrench.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bfv6x8ptecfeu"
+path="res://.godot/imported/tool_wrench.svg-b6bc4ec0cf7f927620292b34dfdb98fe.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tool_wrench.svg"
+dest_files=["res://.godot/imported/tool_wrench.svg-b6bc4ec0cf7f927620292b34dfdb98fe.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tracking_horizontal.svg b/Packs/Kenney-cursors/Basic/tracking_horizontal.svg
new file mode 100644
index 0000000..a91be87
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tracking_horizontal.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tracking_horizontal.svg.import b/Packs/Kenney-cursors/Basic/tracking_horizontal.svg.import
new file mode 100644
index 0000000..9d37a99
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tracking_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://d3oswjj78qdf3"
+path="res://.godot/imported/tracking_horizontal.svg-28bcb0ac633763f7ccf825e4c133d06f.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tracking_horizontal.svg"
+dest_files=["res://.godot/imported/tracking_horizontal.svg-28bcb0ac633763f7ccf825e4c133d06f.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tracking_horizontal_down.svg b/Packs/Kenney-cursors/Basic/tracking_horizontal_down.svg
new file mode 100644
index 0000000..4e1ecbb
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tracking_horizontal_down.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tracking_horizontal_down.svg.import b/Packs/Kenney-cursors/Basic/tracking_horizontal_down.svg.import
new file mode 100644
index 0000000..2fc0a98
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tracking_horizontal_down.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b8t3uoob1dfs7"
+path="res://.godot/imported/tracking_horizontal_down.svg-04e94ea1157f60d7546fca283004ac56.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tracking_horizontal_down.svg"
+dest_files=["res://.godot/imported/tracking_horizontal_down.svg-04e94ea1157f60d7546fca283004ac56.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tracking_horizontal_up.svg b/Packs/Kenney-cursors/Basic/tracking_horizontal_up.svg
new file mode 100644
index 0000000..a66df2e
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tracking_horizontal_up.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tracking_horizontal_up.svg.import b/Packs/Kenney-cursors/Basic/tracking_horizontal_up.svg.import
new file mode 100644
index 0000000..1fd2ca3
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tracking_horizontal_up.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dyvufbh26mrs1"
+path="res://.godot/imported/tracking_horizontal_up.svg-a9dc9fd4e21292c23d3d61a9c2b20b97.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tracking_horizontal_up.svg"
+dest_files=["res://.godot/imported/tracking_horizontal_up.svg-a9dc9fd4e21292c23d3d61a9c2b20b97.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tracking_vertical.svg b/Packs/Kenney-cursors/Basic/tracking_vertical.svg
new file mode 100644
index 0000000..c3b67c0
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tracking_vertical.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tracking_vertical.svg.import b/Packs/Kenney-cursors/Basic/tracking_vertical.svg.import
new file mode 100644
index 0000000..8988fef
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tracking_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cbctskr5dmwep"
+path="res://.godot/imported/tracking_vertical.svg-033e5be66a0ab70de3f56704927844cd.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tracking_vertical.svg"
+dest_files=["res://.godot/imported/tracking_vertical.svg-033e5be66a0ab70de3f56704927844cd.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tracking_vertical_left.svg b/Packs/Kenney-cursors/Basic/tracking_vertical_left.svg
new file mode 100644
index 0000000..4dd2e3c
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tracking_vertical_left.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tracking_vertical_left.svg.import b/Packs/Kenney-cursors/Basic/tracking_vertical_left.svg.import
new file mode 100644
index 0000000..f4701db
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tracking_vertical_left.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dc3lo0oac6dbm"
+path="res://.godot/imported/tracking_vertical_left.svg-4e664bcc9ec0f63f863c6c3cb999b807.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tracking_vertical_left.svg"
+dest_files=["res://.godot/imported/tracking_vertical_left.svg-4e664bcc9ec0f63f863c6c3cb999b807.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/tracking_vertical_right.svg b/Packs/Kenney-cursors/Basic/tracking_vertical_right.svg
new file mode 100644
index 0000000..c5d054b
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tracking_vertical_right.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/tracking_vertical_right.svg.import b/Packs/Kenney-cursors/Basic/tracking_vertical_right.svg.import
new file mode 100644
index 0000000..82a3f98
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/tracking_vertical_right.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://nrp7jwc5w1xh"
+path="res://.godot/imported/tracking_vertical_right.svg-494402b959345d2196a3ea9d26994592.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/tracking_vertical_right.svg"
+dest_files=["res://.godot/imported/tracking_vertical_right.svg-494402b959345d2196a3ea9d26994592.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/zoom.svg b/Packs/Kenney-cursors/Basic/zoom.svg
new file mode 100644
index 0000000..73e6ea7
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/zoom.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/zoom.svg.import b/Packs/Kenney-cursors/Basic/zoom.svg.import
new file mode 100644
index 0000000..ef9e1d8
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/zoom.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://u3bbrvdjyc2s"
+path="res://.godot/imported/zoom.svg-807d52609023ef271760faaae2113d14.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/zoom.svg"
+dest_files=["res://.godot/imported/zoom.svg-807d52609023ef271760faaae2113d14.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/zoom_in.svg b/Packs/Kenney-cursors/Basic/zoom_in.svg
new file mode 100644
index 0000000..caa2bd9
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/zoom_in.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/zoom_in.svg.import b/Packs/Kenney-cursors/Basic/zoom_in.svg.import
new file mode 100644
index 0000000..2f4ad0e
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/zoom_in.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b5dnfby2exngv"
+path="res://.godot/imported/zoom_in.svg-b4eb368ea7b9b0bae4776c0ac14f2d5a.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/zoom_in.svg"
+dest_files=["res://.godot/imported/zoom_in.svg-b4eb368ea7b9b0bae4776c0ac14f2d5a.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/zoom_out.svg b/Packs/Kenney-cursors/Basic/zoom_out.svg
new file mode 100644
index 0000000..f53c0bf
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/zoom_out.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/zoom_out.svg.import b/Packs/Kenney-cursors/Basic/zoom_out.svg.import
new file mode 100644
index 0000000..ce30e52
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/zoom_out.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ce5hb5fjnosdw"
+path="res://.godot/imported/zoom_out.svg-1076265b444642f55630473e69929a1d.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/zoom_out.svg"
+dest_files=["res://.godot/imported/zoom_out.svg-1076265b444642f55630473e69929a1d.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Basic/zoom_reset.svg b/Packs/Kenney-cursors/Basic/zoom_reset.svg
new file mode 100644
index 0000000..28f8824
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/zoom_reset.svg
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Basic/zoom_reset.svg.import b/Packs/Kenney-cursors/Basic/zoom_reset.svg.import
new file mode 100644
index 0000000..90d3154
--- /dev/null
+++ b/Packs/Kenney-cursors/Basic/zoom_reset.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dwfqa3ck8w38k"
+path="res://.godot/imported/zoom_reset.svg-c7e6a4c75e71001c766dc5dfd1576e6e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Basic/zoom_reset.svg"
+dest_files=["res://.godot/imported/zoom_reset.svg-c7e6a4c75e71001c766dc5dfd1576e6e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/arrow_e.svg b/Packs/Kenney-cursors/Outline/arrow_e.svg
new file mode 100644
index 0000000..aa4dae0
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_e.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/arrow_e.svg.import b/Packs/Kenney-cursors/Outline/arrow_e.svg.import
new file mode 100644
index 0000000..ffded33
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_e.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dq67tnn5esn8y"
+path="res://.godot/imported/arrow_e.svg-090592e6a6ab22c211428975bcea7f66.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/arrow_e.svg"
+dest_files=["res://.godot/imported/arrow_e.svg-090592e6a6ab22c211428975bcea7f66.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/arrow_n.svg b/Packs/Kenney-cursors/Outline/arrow_n.svg
new file mode 100644
index 0000000..0e87b6b
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_n.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/arrow_n.svg.import b/Packs/Kenney-cursors/Outline/arrow_n.svg.import
new file mode 100644
index 0000000..1237e19
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_n.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://iqiia7latsvd"
+path="res://.godot/imported/arrow_n.svg-daa23c1d052b710803bc18ac46182e24.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/arrow_n.svg"
+dest_files=["res://.godot/imported/arrow_n.svg-daa23c1d052b710803bc18ac46182e24.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/arrow_ne.svg b/Packs/Kenney-cursors/Outline/arrow_ne.svg
new file mode 100644
index 0000000..02020db
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_ne.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/arrow_ne.svg.import b/Packs/Kenney-cursors/Outline/arrow_ne.svg.import
new file mode 100644
index 0000000..2c9df33
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_ne.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bp5a0gajc425"
+path="res://.godot/imported/arrow_ne.svg-c6cf68bbe93ca1c36e347f598978a884.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/arrow_ne.svg"
+dest_files=["res://.godot/imported/arrow_ne.svg-c6cf68bbe93ca1c36e347f598978a884.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/arrow_nw.svg b/Packs/Kenney-cursors/Outline/arrow_nw.svg
new file mode 100644
index 0000000..3ae5c22
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_nw.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/arrow_nw.svg.import b/Packs/Kenney-cursors/Outline/arrow_nw.svg.import
new file mode 100644
index 0000000..d7e5b97
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_nw.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ccgbxp5h6rf87"
+path="res://.godot/imported/arrow_nw.svg-160e4c81b6fdc6d9195b3e3704e4f17e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/arrow_nw.svg"
+dest_files=["res://.godot/imported/arrow_nw.svg-160e4c81b6fdc6d9195b3e3704e4f17e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/arrow_s.svg b/Packs/Kenney-cursors/Outline/arrow_s.svg
new file mode 100644
index 0000000..a24bbeb
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_s.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/arrow_s.svg.import b/Packs/Kenney-cursors/Outline/arrow_s.svg.import
new file mode 100644
index 0000000..bc3b249
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_s.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bwnldbwkut461"
+path="res://.godot/imported/arrow_s.svg-e56186a44141841ab2727e2d441aa63d.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/arrow_s.svg"
+dest_files=["res://.godot/imported/arrow_s.svg-e56186a44141841ab2727e2d441aa63d.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/arrow_se.svg b/Packs/Kenney-cursors/Outline/arrow_se.svg
new file mode 100644
index 0000000..d95d48b
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_se.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/arrow_se.svg.import b/Packs/Kenney-cursors/Outline/arrow_se.svg.import
new file mode 100644
index 0000000..d98641c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_se.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://kv2jipc4sfba"
+path="res://.godot/imported/arrow_se.svg-cc55a2dcbabf32c318b9037b615e6d39.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/arrow_se.svg"
+dest_files=["res://.godot/imported/arrow_se.svg-cc55a2dcbabf32c318b9037b615e6d39.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/arrow_sw.svg b/Packs/Kenney-cursors/Outline/arrow_sw.svg
new file mode 100644
index 0000000..313b250
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_sw.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/arrow_sw.svg.import b/Packs/Kenney-cursors/Outline/arrow_sw.svg.import
new file mode 100644
index 0000000..1b1cd49
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_sw.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bulkr4a43viku"
+path="res://.godot/imported/arrow_sw.svg-5c6f37bd7581302eea2f8647b28ed644.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/arrow_sw.svg"
+dest_files=["res://.godot/imported/arrow_sw.svg-5c6f37bd7581302eea2f8647b28ed644.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/arrow_w.svg b/Packs/Kenney-cursors/Outline/arrow_w.svg
new file mode 100644
index 0000000..735a035
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_w.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/arrow_w.svg.import b/Packs/Kenney-cursors/Outline/arrow_w.svg.import
new file mode 100644
index 0000000..f45a4bd
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/arrow_w.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cmf1y7q1e60wx"
+path="res://.godot/imported/arrow_w.svg-66e91e5a00adbb307bb9a23f14a7c1ba.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/arrow_w.svg"
+dest_files=["res://.godot/imported/arrow_w.svg-66e91e5a00adbb307bb9a23f14a7c1ba.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/boot.svg b/Packs/Kenney-cursors/Outline/boot.svg
new file mode 100644
index 0000000..1cd32e9
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/boot.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/boot.svg.import b/Packs/Kenney-cursors/Outline/boot.svg.import
new file mode 100644
index 0000000..7ce61d8
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/boot.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://blvuabhhc4fpr"
+path="res://.godot/imported/boot.svg-e6ccea38b3e3333b2fda2bd19e7a6392.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/boot.svg"
+dest_files=["res://.godot/imported/boot.svg-e6ccea38b3e3333b2fda2bd19e7a6392.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/bracket_a_horizontal.svg b/Packs/Kenney-cursors/Outline/bracket_a_horizontal.svg
new file mode 100644
index 0000000..307aa30
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/bracket_a_horizontal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/bracket_a_horizontal.svg.import b/Packs/Kenney-cursors/Outline/bracket_a_horizontal.svg.import
new file mode 100644
index 0000000..fbcd51c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/bracket_a_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b5icac31elx82"
+path="res://.godot/imported/bracket_a_horizontal.svg-9a9af59f7ef5f91d1b673bfc691b7978.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/bracket_a_horizontal.svg"
+dest_files=["res://.godot/imported/bracket_a_horizontal.svg-9a9af59f7ef5f91d1b673bfc691b7978.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/bracket_a_vertical.svg b/Packs/Kenney-cursors/Outline/bracket_a_vertical.svg
new file mode 100644
index 0000000..cfd73ee
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/bracket_a_vertical.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/bracket_a_vertical.svg.import b/Packs/Kenney-cursors/Outline/bracket_a_vertical.svg.import
new file mode 100644
index 0000000..e43838b
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/bracket_a_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dqqpdx8pvgjrr"
+path="res://.godot/imported/bracket_a_vertical.svg-24f40c64549a8e4a445e7c8cf455a76d.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/bracket_a_vertical.svg"
+dest_files=["res://.godot/imported/bracket_a_vertical.svg-24f40c64549a8e4a445e7c8cf455a76d.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/bracket_b_horizontal.svg b/Packs/Kenney-cursors/Outline/bracket_b_horizontal.svg
new file mode 100644
index 0000000..f6d5fb7
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/bracket_b_horizontal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/bracket_b_horizontal.svg.import b/Packs/Kenney-cursors/Outline/bracket_b_horizontal.svg.import
new file mode 100644
index 0000000..7dda9e6
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/bracket_b_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://uyvclsjbdqbc"
+path="res://.godot/imported/bracket_b_horizontal.svg-5f3fdbea2c9b59a281f561c9e419e485.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/bracket_b_horizontal.svg"
+dest_files=["res://.godot/imported/bracket_b_horizontal.svg-5f3fdbea2c9b59a281f561c9e419e485.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/bracket_b_vertical.svg b/Packs/Kenney-cursors/Outline/bracket_b_vertical.svg
new file mode 100644
index 0000000..e19bb84
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/bracket_b_vertical.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/bracket_b_vertical.svg.import b/Packs/Kenney-cursors/Outline/bracket_b_vertical.svg.import
new file mode 100644
index 0000000..b8e395e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/bracket_b_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://wfs5yf2xw8cj"
+path="res://.godot/imported/bracket_b_vertical.svg-84db2a7dab72f38df5e72cc75a56315f.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/bracket_b_vertical.svg"
+dest_files=["res://.godot/imported/bracket_b_vertical.svg-84db2a7dab72f38df5e72cc75a56315f.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/busy_circle.svg b/Packs/Kenney-cursors/Outline/busy_circle.svg
new file mode 100644
index 0000000..107dedc
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/busy_circle.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/busy_circle.svg.import b/Packs/Kenney-cursors/Outline/busy_circle.svg.import
new file mode 100644
index 0000000..02343b9
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/busy_circle.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bphv2y0b46cow"
+path="res://.godot/imported/busy_circle.svg-2a6cb0a0d25b14cecf77675a8d03d764.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/busy_circle.svg"
+dest_files=["res://.godot/imported/busy_circle.svg-2a6cb0a0d25b14cecf77675a8d03d764.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/busy_circle_fade.svg b/Packs/Kenney-cursors/Outline/busy_circle_fade.svg
new file mode 100644
index 0000000..63e7e8b
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/busy_circle_fade.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/busy_circle_fade.svg.import b/Packs/Kenney-cursors/Outline/busy_circle_fade.svg.import
new file mode 100644
index 0000000..f44b013
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/busy_circle_fade.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bqosv23q30pif"
+path="res://.godot/imported/busy_circle_fade.svg-e9771c30822ca7cf30ca7fdd381edb39.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/busy_circle_fade.svg"
+dest_files=["res://.godot/imported/busy_circle_fade.svg-e9771c30822ca7cf30ca7fdd381edb39.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/busy_hourglass.svg b/Packs/Kenney-cursors/Outline/busy_hourglass.svg
new file mode 100644
index 0000000..5ec114e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/busy_hourglass.svg
@@ -0,0 +1,18 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/busy_hourglass.svg.import b/Packs/Kenney-cursors/Outline/busy_hourglass.svg.import
new file mode 100644
index 0000000..fa11440
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/busy_hourglass.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://crgqm7twit8pu"
+path="res://.godot/imported/busy_hourglass.svg-5b7eab83f5aec2fcbe6b87e840c07eeb.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/busy_hourglass.svg"
+dest_files=["res://.godot/imported/busy_hourglass.svg-5b7eab83f5aec2fcbe6b87e840c07eeb.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/busy_hourglass_outline.svg b/Packs/Kenney-cursors/Outline/busy_hourglass_outline.svg
new file mode 100644
index 0000000..4fae9fc
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/busy_hourglass_outline.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/busy_hourglass_outline.svg.import b/Packs/Kenney-cursors/Outline/busy_hourglass_outline.svg.import
new file mode 100644
index 0000000..6751565
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/busy_hourglass_outline.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cywwwln0epodu"
+path="res://.godot/imported/busy_hourglass_outline.svg-8dc421068c2aea38136014a69bbb41b9.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/busy_hourglass_outline.svg"
+dest_files=["res://.godot/imported/busy_hourglass_outline.svg-8dc421068c2aea38136014a69bbb41b9.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/busy_hourglass_outline_detail.svg b/Packs/Kenney-cursors/Outline/busy_hourglass_outline_detail.svg
new file mode 100644
index 0000000..c62c55d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/busy_hourglass_outline_detail.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/busy_hourglass_outline_detail.svg.import b/Packs/Kenney-cursors/Outline/busy_hourglass_outline_detail.svg.import
new file mode 100644
index 0000000..be3d895
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/busy_hourglass_outline_detail.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cqygyw1412oye"
+path="res://.godot/imported/busy_hourglass_outline_detail.svg-da9dc1bbafb6ff39eaacad994dd43bbb.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/busy_hourglass_outline_detail.svg"
+dest_files=["res://.godot/imported/busy_hourglass_outline_detail.svg-da9dc1bbafb6ff39eaacad994dd43bbb.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/cross_large.svg b/Packs/Kenney-cursors/Outline/cross_large.svg
new file mode 100644
index 0000000..f619f72
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cross_large.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/cross_large.svg.import b/Packs/Kenney-cursors/Outline/cross_large.svg.import
new file mode 100644
index 0000000..d9fde74
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cross_large.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bkcs8ga6a14r4"
+path="res://.godot/imported/cross_large.svg-cd3bdd2d25c17585cb001807abdeeba6.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/cross_large.svg"
+dest_files=["res://.godot/imported/cross_large.svg-cd3bdd2d25c17585cb001807abdeeba6.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/cross_small.svg b/Packs/Kenney-cursors/Outline/cross_small.svg
new file mode 100644
index 0000000..8b8e1a1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cross_small.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/cross_small.svg.import b/Packs/Kenney-cursors/Outline/cross_small.svg.import
new file mode 100644
index 0000000..8dadb19
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cross_small.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cnfp7ysyyxwv0"
+path="res://.godot/imported/cross_small.svg-0b6c6fd8a2ec7a6bc2996afd94fb0afe.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/cross_small.svg"
+dest_files=["res://.godot/imported/cross_small.svg-0b6c6fd8a2ec7a6bc2996afd94fb0afe.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/cursor_alias.svg b/Packs/Kenney-cursors/Outline/cursor_alias.svg
new file mode 100644
index 0000000..49e9b97
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_alias.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/cursor_alias.svg.import b/Packs/Kenney-cursors/Outline/cursor_alias.svg.import
new file mode 100644
index 0000000..2c36fa6
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_alias.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://y6my26hs1skw"
+path="res://.godot/imported/cursor_alias.svg-666aed948da70775b8d0752cc4ae9ab7.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/cursor_alias.svg"
+dest_files=["res://.godot/imported/cursor_alias.svg-666aed948da70775b8d0752cc4ae9ab7.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/cursor_busy.svg b/Packs/Kenney-cursors/Outline/cursor_busy.svg
new file mode 100644
index 0000000..6787492
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_busy.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/cursor_busy.svg.import b/Packs/Kenney-cursors/Outline/cursor_busy.svg.import
new file mode 100644
index 0000000..53348b1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_busy.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dikqy7wkrh4y8"
+path="res://.godot/imported/cursor_busy.svg-77ba91d31f2eadcdae3777eaaff86efb.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/cursor_busy.svg"
+dest_files=["res://.godot/imported/cursor_busy.svg-77ba91d31f2eadcdae3777eaaff86efb.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/cursor_cogs.svg b/Packs/Kenney-cursors/Outline/cursor_cogs.svg
new file mode 100644
index 0000000..d7b3bcd
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_cogs.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/cursor_cogs.svg.import b/Packs/Kenney-cursors/Outline/cursor_cogs.svg.import
new file mode 100644
index 0000000..baaed02
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_cogs.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b71tq185sxyxf"
+path="res://.godot/imported/cursor_cogs.svg-8b06d0fb0692cd16edcef17e4a676564.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/cursor_cogs.svg"
+dest_files=["res://.godot/imported/cursor_cogs.svg-8b06d0fb0692cd16edcef17e4a676564.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/cursor_copy.svg b/Packs/Kenney-cursors/Outline/cursor_copy.svg
new file mode 100644
index 0000000..e4a2575
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_copy.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/cursor_copy.svg.import b/Packs/Kenney-cursors/Outline/cursor_copy.svg.import
new file mode 100644
index 0000000..f8f4ef4
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_copy.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ddljdywiq4kd1"
+path="res://.godot/imported/cursor_copy.svg-d86edf6c0a437df433598d1bc76d77e4.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/cursor_copy.svg"
+dest_files=["res://.godot/imported/cursor_copy.svg-d86edf6c0a437df433598d1bc76d77e4.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/cursor_disabled.svg b/Packs/Kenney-cursors/Outline/cursor_disabled.svg
new file mode 100644
index 0000000..464664e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_disabled.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/cursor_disabled.svg.import b/Packs/Kenney-cursors/Outline/cursor_disabled.svg.import
new file mode 100644
index 0000000..e0a5a75
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_disabled.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ry3rymrsfsvm"
+path="res://.godot/imported/cursor_disabled.svg-b315b2775fe5158575ede5ab50d532d9.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/cursor_disabled.svg"
+dest_files=["res://.godot/imported/cursor_disabled.svg-b315b2775fe5158575ede5ab50d532d9.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/cursor_exclamation.svg b/Packs/Kenney-cursors/Outline/cursor_exclamation.svg
new file mode 100644
index 0000000..b3ffabb
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_exclamation.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/cursor_exclamation.svg.import b/Packs/Kenney-cursors/Outline/cursor_exclamation.svg.import
new file mode 100644
index 0000000..ea5b299
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_exclamation.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c6eg5mum88i2x"
+path="res://.godot/imported/cursor_exclamation.svg-60c1d01121321d2c89a42f435c91b531.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/cursor_exclamation.svg"
+dest_files=["res://.godot/imported/cursor_exclamation.svg-60c1d01121321d2c89a42f435c91b531.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/cursor_help.svg b/Packs/Kenney-cursors/Outline/cursor_help.svg
new file mode 100644
index 0000000..a108b54
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_help.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/cursor_help.svg.import b/Packs/Kenney-cursors/Outline/cursor_help.svg.import
new file mode 100644
index 0000000..9e4feee
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_help.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dglcwl5qo0uqa"
+path="res://.godot/imported/cursor_help.svg-ae7b122802a6ef9d1c3d9792eed4ed26.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/cursor_help.svg"
+dest_files=["res://.godot/imported/cursor_help.svg-ae7b122802a6ef9d1c3d9792eed4ed26.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/cursor_menu.svg b/Packs/Kenney-cursors/Outline/cursor_menu.svg
new file mode 100644
index 0000000..45d20d6
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_menu.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/cursor_menu.svg.import b/Packs/Kenney-cursors/Outline/cursor_menu.svg.import
new file mode 100644
index 0000000..948e57d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_menu.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://mix71vrfe7s0"
+path="res://.godot/imported/cursor_menu.svg-b9ebb7b86e5dd37a507bc6985947919c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/cursor_menu.svg"
+dest_files=["res://.godot/imported/cursor_menu.svg-b9ebb7b86e5dd37a507bc6985947919c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/cursor_none.svg b/Packs/Kenney-cursors/Outline/cursor_none.svg
new file mode 100644
index 0000000..f6e1df0
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_none.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/cursor_none.svg.import b/Packs/Kenney-cursors/Outline/cursor_none.svg.import
new file mode 100644
index 0000000..54c66ae
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/cursor_none.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dadtxqyiouw0o"
+path="res://.godot/imported/cursor_none.svg-7da448318fd0537f3f8b4e745da60623.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/cursor_none.svg"
+dest_files=["res://.godot/imported/cursor_none.svg-7da448318fd0537f3f8b4e745da60623.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/disabled.svg b/Packs/Kenney-cursors/Outline/disabled.svg
new file mode 100644
index 0000000..d3d012f
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/disabled.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/disabled.svg.import b/Packs/Kenney-cursors/Outline/disabled.svg.import
new file mode 100644
index 0000000..007d519
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/disabled.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c6ajs0ybnofy0"
+path="res://.godot/imported/disabled.svg-460b7f104c817a457d61fbe15cf1ef77.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/disabled.svg"
+dest_files=["res://.godot/imported/disabled.svg-460b7f104c817a457d61fbe15cf1ef77.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/door.svg b/Packs/Kenney-cursors/Outline/door.svg
new file mode 100644
index 0000000..701ca9b
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/door.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/door.svg.import b/Packs/Kenney-cursors/Outline/door.svg.import
new file mode 100644
index 0000000..d4c7717
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/door.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c37m4o1urupwl"
+path="res://.godot/imported/door.svg-50ec2bead66599fc694a946f76707008.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/door.svg"
+dest_files=["res://.godot/imported/door.svg-50ec2bead66599fc694a946f76707008.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/door_disabled.svg b/Packs/Kenney-cursors/Outline/door_disabled.svg
new file mode 100644
index 0000000..8c10258
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/door_disabled.svg
@@ -0,0 +1,9 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/door_disabled.svg.import b/Packs/Kenney-cursors/Outline/door_disabled.svg.import
new file mode 100644
index 0000000..57b9409
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/door_disabled.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cu1ap8nivq4t"
+path="res://.godot/imported/door_disabled.svg-b9c0bfb4c0f2d07c1c2d1b8b33814435.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/door_disabled.svg"
+dest_files=["res://.godot/imported/door_disabled.svg-b9c0bfb4c0f2d07c1c2d1b8b33814435.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/door_enter.svg b/Packs/Kenney-cursors/Outline/door_enter.svg
new file mode 100644
index 0000000..fa3f16a
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/door_enter.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/door_enter.svg.import b/Packs/Kenney-cursors/Outline/door_enter.svg.import
new file mode 100644
index 0000000..d409e20
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/door_enter.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cjtmx06p58mbs"
+path="res://.godot/imported/door_enter.svg-df167101381ff1ebd8e18e4a19f6949d.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/door_enter.svg"
+dest_files=["res://.godot/imported/door_enter.svg-df167101381ff1ebd8e18e4a19f6949d.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/door_exit.svg b/Packs/Kenney-cursors/Outline/door_exit.svg
new file mode 100644
index 0000000..3f897df
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/door_exit.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/door_exit.svg.import b/Packs/Kenney-cursors/Outline/door_exit.svg.import
new file mode 100644
index 0000000..092c875
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/door_exit.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://evg5spkaw6um"
+path="res://.godot/imported/door_exit.svg-24054fe10043c4fb3a1afa5c1334a9ac.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/door_exit.svg"
+dest_files=["res://.godot/imported/door_exit.svg-24054fe10043c4fb3a1afa5c1334a9ac.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/dot_large.svg b/Packs/Kenney-cursors/Outline/dot_large.svg
new file mode 100644
index 0000000..eb3b7cd
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/dot_large.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/dot_large.svg.import b/Packs/Kenney-cursors/Outline/dot_large.svg.import
new file mode 100644
index 0000000..cc5029c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/dot_large.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dqwx4xeq2veee"
+path="res://.godot/imported/dot_large.svg-89f01c94f5938a68a805ae0e7a0d4bfb.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/dot_large.svg"
+dest_files=["res://.godot/imported/dot_large.svg-89f01c94f5938a68a805ae0e7a0d4bfb.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/dot_small.svg b/Packs/Kenney-cursors/Outline/dot_small.svg
new file mode 100644
index 0000000..27dfc1d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/dot_small.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/dot_small.svg.import b/Packs/Kenney-cursors/Outline/dot_small.svg.import
new file mode 100644
index 0000000..eb1472c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/dot_small.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cnljksgkjnxg7"
+path="res://.godot/imported/dot_small.svg-6f9a362bb10b046308fa5f7d051f4718.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/dot_small.svg"
+dest_files=["res://.godot/imported/dot_small.svg-6f9a362bb10b046308fa5f7d051f4718.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/drawing_brush.svg b/Packs/Kenney-cursors/Outline/drawing_brush.svg
new file mode 100644
index 0000000..649a546
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_brush.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/drawing_brush.svg.import b/Packs/Kenney-cursors/Outline/drawing_brush.svg.import
new file mode 100644
index 0000000..272182e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_brush.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cvvqlmgeudq3g"
+path="res://.godot/imported/drawing_brush.svg-33241121b9836e7ff4949bf9215817e3.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/drawing_brush.svg"
+dest_files=["res://.godot/imported/drawing_brush.svg-33241121b9836e7ff4949bf9215817e3.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/drawing_brush_large.svg b/Packs/Kenney-cursors/Outline/drawing_brush_large.svg
new file mode 100644
index 0000000..141e365
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_brush_large.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/drawing_brush_large.svg.import b/Packs/Kenney-cursors/Outline/drawing_brush_large.svg.import
new file mode 100644
index 0000000..da30959
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_brush_large.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bhxot8c8l65pa"
+path="res://.godot/imported/drawing_brush_large.svg-e9f52b101ba0b05a39ae430d51f9b152.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/drawing_brush_large.svg"
+dest_files=["res://.godot/imported/drawing_brush_large.svg-e9f52b101ba0b05a39ae430d51f9b152.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/drawing_bucket.svg b/Packs/Kenney-cursors/Outline/drawing_bucket.svg
new file mode 100644
index 0000000..084b2a1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_bucket.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/drawing_bucket.svg.import b/Packs/Kenney-cursors/Outline/drawing_bucket.svg.import
new file mode 100644
index 0000000..616d5da
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_bucket.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://jo6vnyoludha"
+path="res://.godot/imported/drawing_bucket.svg-08e73642cd3044d1ff86d1f51d2890bc.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/drawing_bucket.svg"
+dest_files=["res://.godot/imported/drawing_bucket.svg-08e73642cd3044d1ff86d1f51d2890bc.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/drawing_eraser.svg b/Packs/Kenney-cursors/Outline/drawing_eraser.svg
new file mode 100644
index 0000000..4738c58
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_eraser.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/drawing_eraser.svg.import b/Packs/Kenney-cursors/Outline/drawing_eraser.svg.import
new file mode 100644
index 0000000..95e76d0
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_eraser.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bhdt02dlculrs"
+path="res://.godot/imported/drawing_eraser.svg-3bb6a4b81eb1f359e8625decafd61856.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/drawing_eraser.svg"
+dest_files=["res://.godot/imported/drawing_eraser.svg-3bb6a4b81eb1f359e8625decafd61856.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/drawing_pen.svg b/Packs/Kenney-cursors/Outline/drawing_pen.svg
new file mode 100644
index 0000000..2e504eb
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_pen.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/drawing_pen.svg.import b/Packs/Kenney-cursors/Outline/drawing_pen.svg.import
new file mode 100644
index 0000000..d506dec
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_pen.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://4h2jbfvnvjf5"
+path="res://.godot/imported/drawing_pen.svg-e5af1dfeec06cda4faf005d066b108eb.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/drawing_pen.svg"
+dest_files=["res://.godot/imported/drawing_pen.svg-e5af1dfeec06cda4faf005d066b108eb.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/drawing_pencil.svg b/Packs/Kenney-cursors/Outline/drawing_pencil.svg
new file mode 100644
index 0000000..51f955f
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_pencil.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/drawing_pencil.svg.import b/Packs/Kenney-cursors/Outline/drawing_pencil.svg.import
new file mode 100644
index 0000000..b1782b7
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_pencil.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bidbqphrflhqw"
+path="res://.godot/imported/drawing_pencil.svg-f018d4d06d74e3ef7121a9ebb3233c4c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/drawing_pencil.svg"
+dest_files=["res://.godot/imported/drawing_pencil.svg-f018d4d06d74e3ef7121a9ebb3233c4c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/drawing_picker.svg b/Packs/Kenney-cursors/Outline/drawing_picker.svg
new file mode 100644
index 0000000..3f05a2a
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_picker.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/drawing_picker.svg.import b/Packs/Kenney-cursors/Outline/drawing_picker.svg.import
new file mode 100644
index 0000000..8f50bd9
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_picker.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://1ucumxfig2tr"
+path="res://.godot/imported/drawing_picker.svg-793b4baf82de581efe6cdacfd36ba2da.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/drawing_picker.svg"
+dest_files=["res://.godot/imported/drawing_picker.svg-793b4baf82de581efe6cdacfd36ba2da.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/drawing_spray.svg b/Packs/Kenney-cursors/Outline/drawing_spray.svg
new file mode 100644
index 0000000..f2973a4
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_spray.svg
@@ -0,0 +1,18 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/drawing_spray.svg.import b/Packs/Kenney-cursors/Outline/drawing_spray.svg.import
new file mode 100644
index 0000000..a3d7461
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/drawing_spray.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c0fpnubjnbyx6"
+path="res://.godot/imported/drawing_spray.svg-852731827ad2440099dd8e7fcccbddd1.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/drawing_spray.svg"
+dest_files=["res://.godot/imported/drawing_spray.svg-852731827ad2440099dd8e7fcccbddd1.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/gauntlet_default.svg b/Packs/Kenney-cursors/Outline/gauntlet_default.svg
new file mode 100644
index 0000000..fb9b670
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/gauntlet_default.svg
@@ -0,0 +1,18 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/gauntlet_default.svg.import b/Packs/Kenney-cursors/Outline/gauntlet_default.svg.import
new file mode 100644
index 0000000..7a77ed1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/gauntlet_default.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bho4wuq7hnl4r"
+path="res://.godot/imported/gauntlet_default.svg-8aae1563c4842289d1b94774d7127e25.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/gauntlet_default.svg"
+dest_files=["res://.godot/imported/gauntlet_default.svg-8aae1563c4842289d1b94774d7127e25.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/gauntlet_open.svg b/Packs/Kenney-cursors/Outline/gauntlet_open.svg
new file mode 100644
index 0000000..c58cc9e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/gauntlet_open.svg
@@ -0,0 +1,18 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/gauntlet_open.svg.import b/Packs/Kenney-cursors/Outline/gauntlet_open.svg.import
new file mode 100644
index 0000000..e64c072
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/gauntlet_open.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bdw5mhpdy16t0"
+path="res://.godot/imported/gauntlet_open.svg-a9f792fd40f5d0564b96f13f81c12a2f.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/gauntlet_open.svg"
+dest_files=["res://.godot/imported/gauntlet_open.svg-a9f792fd40f5d0564b96f13f81c12a2f.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/gauntlet_point.svg b/Packs/Kenney-cursors/Outline/gauntlet_point.svg
new file mode 100644
index 0000000..53c75ff
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/gauntlet_point.svg
@@ -0,0 +1,18 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/gauntlet_point.svg.import b/Packs/Kenney-cursors/Outline/gauntlet_point.svg.import
new file mode 100644
index 0000000..fe4fe8c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/gauntlet_point.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bjaukrka0rvmm"
+path="res://.godot/imported/gauntlet_point.svg-8eb095c4d2fc9c804e92f50a9d3238a5.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/gauntlet_point.svg"
+dest_files=["res://.godot/imported/gauntlet_point.svg-8eb095c4d2fc9c804e92f50a9d3238a5.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_closed.svg b/Packs/Kenney-cursors/Outline/hand_closed.svg
new file mode 100644
index 0000000..d1c0c6a
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_closed.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_closed.svg.import b/Packs/Kenney-cursors/Outline/hand_closed.svg.import
new file mode 100644
index 0000000..f74330e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_closed.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dwmi21rqawslc"
+path="res://.godot/imported/hand_closed.svg-3c8350b4fab5428d26bfaf5c9e1c9f35.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_closed.svg"
+dest_files=["res://.godot/imported/hand_closed.svg-3c8350b4fab5428d26bfaf5c9e1c9f35.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_open.svg b/Packs/Kenney-cursors/Outline/hand_open.svg
new file mode 100644
index 0000000..157244e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_open.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_open.svg.import b/Packs/Kenney-cursors/Outline/hand_open.svg.import
new file mode 100644
index 0000000..d8ec2cd
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_open.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://qcxrsgfr0ovr"
+path="res://.godot/imported/hand_open.svg-b3200e2a02ce445c84eb3fc40936a32b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_open.svg"
+dest_files=["res://.godot/imported/hand_open.svg-b3200e2a02ce445c84eb3fc40936a32b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_point.svg b/Packs/Kenney-cursors/Outline/hand_point.svg
new file mode 100644
index 0000000..62db65c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_point.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_point.svg.import b/Packs/Kenney-cursors/Outline/hand_point.svg.import
new file mode 100644
index 0000000..31157c1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_point.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dp4ed16rb1754"
+path="res://.godot/imported/hand_point.svg-0f6176a54dd44f4e22a82be2c78a6ee2.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_point.svg"
+dest_files=["res://.godot/imported/hand_point.svg-0f6176a54dd44f4e22a82be2c78a6ee2.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_point_e.svg b/Packs/Kenney-cursors/Outline/hand_point_e.svg
new file mode 100644
index 0000000..7cb4764
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_point_e.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_point_e.svg.import b/Packs/Kenney-cursors/Outline/hand_point_e.svg.import
new file mode 100644
index 0000000..ea2ba26
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_point_e.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://tuf68j4sacpr"
+path="res://.godot/imported/hand_point_e.svg-76a3145cf67c62cfbb5a68fdc9e9ba7b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_point_e.svg"
+dest_files=["res://.godot/imported/hand_point_e.svg-76a3145cf67c62cfbb5a68fdc9e9ba7b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_point_n.svg b/Packs/Kenney-cursors/Outline/hand_point_n.svg
new file mode 100644
index 0000000..6498386
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_point_n.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_point_n.svg.import b/Packs/Kenney-cursors/Outline/hand_point_n.svg.import
new file mode 100644
index 0000000..e9a8bd7
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_point_n.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b242k20meq261"
+path="res://.godot/imported/hand_point_n.svg-d1a02f085136f2f72529eba2badc451b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_point_n.svg"
+dest_files=["res://.godot/imported/hand_point_n.svg-d1a02f085136f2f72529eba2badc451b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_small_closed.svg b/Packs/Kenney-cursors/Outline/hand_small_closed.svg
new file mode 100644
index 0000000..ca69773
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_small_closed.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_small_closed.svg.import b/Packs/Kenney-cursors/Outline/hand_small_closed.svg.import
new file mode 100644
index 0000000..00ce767
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_small_closed.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bkayowan76ugr"
+path="res://.godot/imported/hand_small_closed.svg-2e0ed014162627d73a7887ab62dbf2e0.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_small_closed.svg"
+dest_files=["res://.godot/imported/hand_small_closed.svg-2e0ed014162627d73a7887ab62dbf2e0.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_small_open.svg b/Packs/Kenney-cursors/Outline/hand_small_open.svg
new file mode 100644
index 0000000..76890a8
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_small_open.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_small_open.svg.import b/Packs/Kenney-cursors/Outline/hand_small_open.svg.import
new file mode 100644
index 0000000..26f0c95
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_small_open.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dimkvh47wclbx"
+path="res://.godot/imported/hand_small_open.svg-2269a31cb0ef2fcb96f7966d3c6a64ca.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_small_open.svg"
+dest_files=["res://.godot/imported/hand_small_open.svg-2269a31cb0ef2fcb96f7966d3c6a64ca.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_small_point.svg b/Packs/Kenney-cursors/Outline/hand_small_point.svg
new file mode 100644
index 0000000..5c37d55
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_small_point.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_small_point.svg.import b/Packs/Kenney-cursors/Outline/hand_small_point.svg.import
new file mode 100644
index 0000000..31f85f1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_small_point.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c2e4skynmoewb"
+path="res://.godot/imported/hand_small_point.svg-9af9dc55d814bfdcf80bd1b8a304bdf5.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_small_point.svg"
+dest_files=["res://.godot/imported/hand_small_point.svg-9af9dc55d814bfdcf80bd1b8a304bdf5.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_small_point_e.svg b/Packs/Kenney-cursors/Outline/hand_small_point_e.svg
new file mode 100644
index 0000000..aae3c39
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_small_point_e.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_small_point_e.svg.import b/Packs/Kenney-cursors/Outline/hand_small_point_e.svg.import
new file mode 100644
index 0000000..b868bbf
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_small_point_e.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://jm8a4fq0cuar"
+path="res://.godot/imported/hand_small_point_e.svg-d187f9f67d62984fc262a1a9cfb819fe.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_small_point_e.svg"
+dest_files=["res://.godot/imported/hand_small_point_e.svg-d187f9f67d62984fc262a1a9cfb819fe.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_small_point_n.svg b/Packs/Kenney-cursors/Outline/hand_small_point_n.svg
new file mode 100644
index 0000000..8373045
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_small_point_n.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_small_point_n.svg.import b/Packs/Kenney-cursors/Outline/hand_small_point_n.svg.import
new file mode 100644
index 0000000..f1eb13d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_small_point_n.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bich2kahbll4q"
+path="res://.godot/imported/hand_small_point_n.svg-09d707ee23c140c63c1121905eaebb05.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_small_point_n.svg"
+dest_files=["res://.godot/imported/hand_small_point_n.svg-09d707ee23c140c63c1121905eaebb05.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_thin_closed.svg b/Packs/Kenney-cursors/Outline/hand_thin_closed.svg
new file mode 100644
index 0000000..33d728d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_thin_closed.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_thin_closed.svg.import b/Packs/Kenney-cursors/Outline/hand_thin_closed.svg.import
new file mode 100644
index 0000000..5374124
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_thin_closed.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cbfgnqi2m4dsl"
+path="res://.godot/imported/hand_thin_closed.svg-560719403b64ae6314779baa1812b1d4.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_thin_closed.svg"
+dest_files=["res://.godot/imported/hand_thin_closed.svg-560719403b64ae6314779baa1812b1d4.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_thin_open.svg b/Packs/Kenney-cursors/Outline/hand_thin_open.svg
new file mode 100644
index 0000000..deee3c1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_thin_open.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_thin_open.svg.import b/Packs/Kenney-cursors/Outline/hand_thin_open.svg.import
new file mode 100644
index 0000000..e78972d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_thin_open.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cyuamnupnbi6m"
+path="res://.godot/imported/hand_thin_open.svg-2d1d9605592e9dd3672d3d1da16af267.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_thin_open.svg"
+dest_files=["res://.godot/imported/hand_thin_open.svg-2d1d9605592e9dd3672d3d1da16af267.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_thin_point.svg b/Packs/Kenney-cursors/Outline/hand_thin_point.svg
new file mode 100644
index 0000000..dc0ded6
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_thin_point.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_thin_point.svg.import b/Packs/Kenney-cursors/Outline/hand_thin_point.svg.import
new file mode 100644
index 0000000..b42a134
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_thin_point.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cu0fvh1qgp3w2"
+path="res://.godot/imported/hand_thin_point.svg-6fd6b807da47aea42dd7b7ace1878a01.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_thin_point.svg"
+dest_files=["res://.godot/imported/hand_thin_point.svg-6fd6b807da47aea42dd7b7ace1878a01.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_thin_small_closed.svg b/Packs/Kenney-cursors/Outline/hand_thin_small_closed.svg
new file mode 100644
index 0000000..c170687
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_thin_small_closed.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_thin_small_closed.svg.import b/Packs/Kenney-cursors/Outline/hand_thin_small_closed.svg.import
new file mode 100644
index 0000000..2211ef8
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_thin_small_closed.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cj5a2f66ktsfw"
+path="res://.godot/imported/hand_thin_small_closed.svg-b383fa2594a9018b0ebec5f4af562520.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_thin_small_closed.svg"
+dest_files=["res://.godot/imported/hand_thin_small_closed.svg-b383fa2594a9018b0ebec5f4af562520.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_thin_small_open.svg b/Packs/Kenney-cursors/Outline/hand_thin_small_open.svg
new file mode 100644
index 0000000..6039416
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_thin_small_open.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_thin_small_open.svg.import b/Packs/Kenney-cursors/Outline/hand_thin_small_open.svg.import
new file mode 100644
index 0000000..eebb390
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_thin_small_open.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://byacxvb77s758"
+path="res://.godot/imported/hand_thin_small_open.svg-ef71754e92bab2ee6902af09a6210acb.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_thin_small_open.svg"
+dest_files=["res://.godot/imported/hand_thin_small_open.svg-ef71754e92bab2ee6902af09a6210acb.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/hand_thin_small_point.svg b/Packs/Kenney-cursors/Outline/hand_thin_small_point.svg
new file mode 100644
index 0000000..5f32652
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_thin_small_point.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/hand_thin_small_point.svg.import b/Packs/Kenney-cursors/Outline/hand_thin_small_point.svg.import
new file mode 100644
index 0000000..735db52
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/hand_thin_small_point.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bcwnpi2lieem"
+path="res://.godot/imported/hand_thin_small_point.svg-734fd49145337ab410cdb9a87f891049.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/hand_thin_small_point.svg"
+dest_files=["res://.godot/imported/hand_thin_small_point.svg-734fd49145337ab410cdb9a87f891049.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/line_cross.svg b/Packs/Kenney-cursors/Outline/line_cross.svg
new file mode 100644
index 0000000..13ca9b1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/line_cross.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/line_cross.svg.import b/Packs/Kenney-cursors/Outline/line_cross.svg.import
new file mode 100644
index 0000000..4bda63c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/line_cross.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bn8fonfl58wtk"
+path="res://.godot/imported/line_cross.svg-b94c899d26aab8f6377591cc4628adb1.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/line_cross.svg"
+dest_files=["res://.godot/imported/line_cross.svg-b94c899d26aab8f6377591cc4628adb1.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/line_horizontal.svg b/Packs/Kenney-cursors/Outline/line_horizontal.svg
new file mode 100644
index 0000000..375b7c4
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/line_horizontal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/line_horizontal.svg.import b/Packs/Kenney-cursors/Outline/line_horizontal.svg.import
new file mode 100644
index 0000000..53511c4
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/line_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ccpn82kw4tc5v"
+path="res://.godot/imported/line_horizontal.svg-45e7f14e1a8251b03f4cbf9c24d77962.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/line_horizontal.svg"
+dest_files=["res://.godot/imported/line_horizontal.svg-45e7f14e1a8251b03f4cbf9c24d77962.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/line_vertical.svg b/Packs/Kenney-cursors/Outline/line_vertical.svg
new file mode 100644
index 0000000..bad6462
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/line_vertical.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/line_vertical.svg.import b/Packs/Kenney-cursors/Outline/line_vertical.svg.import
new file mode 100644
index 0000000..2cf6121
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/line_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b1pcx2md8xr3n"
+path="res://.godot/imported/line_vertical.svg-1d51bdeb77f1986b2f133b863b6ecc81.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/line_vertical.svg"
+dest_files=["res://.godot/imported/line_vertical.svg-1d51bdeb77f1986b2f133b863b6ecc81.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/lock.svg b/Packs/Kenney-cursors/Outline/lock.svg
new file mode 100644
index 0000000..d470929
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/lock.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/lock.svg.import b/Packs/Kenney-cursors/Outline/lock.svg.import
new file mode 100644
index 0000000..b42ecf7
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/lock.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dlawumtccl5vw"
+path="res://.godot/imported/lock.svg-9609ac746a5c17444eeff6092ca6455b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/lock.svg"
+dest_files=["res://.godot/imported/lock.svg-9609ac746a5c17444eeff6092ca6455b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/lock_unlocked.svg b/Packs/Kenney-cursors/Outline/lock_unlocked.svg
new file mode 100644
index 0000000..a4f764c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/lock_unlocked.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/lock_unlocked.svg.import b/Packs/Kenney-cursors/Outline/lock_unlocked.svg.import
new file mode 100644
index 0000000..49a858c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/lock_unlocked.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://d22hop43x8ieo"
+path="res://.godot/imported/lock_unlocked.svg-e0a1c2d91d89b3cb417e62de6f01fd3c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/lock_unlocked.svg"
+dest_files=["res://.godot/imported/lock_unlocked.svg-e0a1c2d91d89b3cb417e62de6f01fd3c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/look_a.svg b/Packs/Kenney-cursors/Outline/look_a.svg
new file mode 100644
index 0000000..00a13f0
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/look_a.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/look_a.svg.import b/Packs/Kenney-cursors/Outline/look_a.svg.import
new file mode 100644
index 0000000..005b08f
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/look_a.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bngmf8x67qo6j"
+path="res://.godot/imported/look_a.svg-f4346d9b4bd96f492ac1b0bdab785077.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/look_a.svg"
+dest_files=["res://.godot/imported/look_a.svg-f4346d9b4bd96f492ac1b0bdab785077.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/look_b.svg b/Packs/Kenney-cursors/Outline/look_b.svg
new file mode 100644
index 0000000..295db43
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/look_b.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/look_b.svg.import b/Packs/Kenney-cursors/Outline/look_b.svg.import
new file mode 100644
index 0000000..e17f54e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/look_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b7qhn82n6nv17"
+path="res://.godot/imported/look_b.svg-b40d0437f17f28c44c30dc3a12f65d25.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/look_b.svg"
+dest_files=["res://.godot/imported/look_b.svg-b40d0437f17f28c44c30dc3a12f65d25.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/look_c.svg b/Packs/Kenney-cursors/Outline/look_c.svg
new file mode 100644
index 0000000..a061b9d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/look_c.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/look_c.svg.import b/Packs/Kenney-cursors/Outline/look_c.svg.import
new file mode 100644
index 0000000..76b010a
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/look_c.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bxpeyt8cyubr0"
+path="res://.godot/imported/look_c.svg-ac989ebca85b0eff5d9ce04d8e9aab32.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/look_c.svg"
+dest_files=["res://.godot/imported/look_c.svg-ac989ebca85b0eff5d9ce04d8e9aab32.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/look_d.svg b/Packs/Kenney-cursors/Outline/look_d.svg
new file mode 100644
index 0000000..769fab0
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/look_d.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/look_d.svg.import b/Packs/Kenney-cursors/Outline/look_d.svg.import
new file mode 100644
index 0000000..7da81d5
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/look_d.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dfixq8avvlk8t"
+path="res://.godot/imported/look_d.svg-7ad4cf0badbaa889a73f42c0ca173665.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/look_d.svg"
+dest_files=["res://.godot/imported/look_d.svg-7ad4cf0badbaa889a73f42c0ca173665.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/mark_exclamation.svg b/Packs/Kenney-cursors/Outline/mark_exclamation.svg
new file mode 100644
index 0000000..8266ada
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/mark_exclamation.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/mark_exclamation.svg.import b/Packs/Kenney-cursors/Outline/mark_exclamation.svg.import
new file mode 100644
index 0000000..e18731e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/mark_exclamation.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bsisae3ddcc7m"
+path="res://.godot/imported/mark_exclamation.svg-cb288df36f497717278c9778100a77fc.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/mark_exclamation.svg"
+dest_files=["res://.godot/imported/mark_exclamation.svg-cb288df36f497717278c9778100a77fc.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/mark_exclamation_pointer_b.svg b/Packs/Kenney-cursors/Outline/mark_exclamation_pointer_b.svg
new file mode 100644
index 0000000..8ccc53e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/mark_exclamation_pointer_b.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/mark_exclamation_pointer_b.svg.import b/Packs/Kenney-cursors/Outline/mark_exclamation_pointer_b.svg.import
new file mode 100644
index 0000000..c8bf596
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/mark_exclamation_pointer_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dse3soww6cwyk"
+path="res://.godot/imported/mark_exclamation_pointer_b.svg-9349c4f2d7fee5d700f4c8f8f8c6deb9.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/mark_exclamation_pointer_b.svg"
+dest_files=["res://.godot/imported/mark_exclamation_pointer_b.svg-9349c4f2d7fee5d700f4c8f8f8c6deb9.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/mark_question.svg b/Packs/Kenney-cursors/Outline/mark_question.svg
new file mode 100644
index 0000000..8d51405
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/mark_question.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/mark_question.svg.import b/Packs/Kenney-cursors/Outline/mark_question.svg.import
new file mode 100644
index 0000000..63d2ed8
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/mark_question.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://baqgod73c84wl"
+path="res://.godot/imported/mark_question.svg-06b82d7a004325f35ccd8d616e3fbd2b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/mark_question.svg"
+dest_files=["res://.godot/imported/mark_question.svg-06b82d7a004325f35ccd8d616e3fbd2b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/mark_question_pointer_b.svg b/Packs/Kenney-cursors/Outline/mark_question_pointer_b.svg
new file mode 100644
index 0000000..53650f9
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/mark_question_pointer_b.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/mark_question_pointer_b.svg.import b/Packs/Kenney-cursors/Outline/mark_question_pointer_b.svg.import
new file mode 100644
index 0000000..3dec051
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/mark_question_pointer_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dtasmts2cf5ok"
+path="res://.godot/imported/mark_question_pointer_b.svg-987852a9c41d6bd958f0f43a5c751372.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/mark_question_pointer_b.svg"
+dest_files=["res://.godot/imported/mark_question_pointer_b.svg-987852a9c41d6bd958f0f43a5c751372.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/message_dots_round.svg b/Packs/Kenney-cursors/Outline/message_dots_round.svg
new file mode 100644
index 0000000..c165ffc
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/message_dots_round.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/message_dots_round.svg.import b/Packs/Kenney-cursors/Outline/message_dots_round.svg.import
new file mode 100644
index 0000000..94fa850
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/message_dots_round.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dwkf174m572fg"
+path="res://.godot/imported/message_dots_round.svg-26bdc5ca1c636f597ae0ab7e413a5891.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/message_dots_round.svg"
+dest_files=["res://.godot/imported/message_dots_round.svg-26bdc5ca1c636f597ae0ab7e413a5891.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/message_dots_square.svg b/Packs/Kenney-cursors/Outline/message_dots_square.svg
new file mode 100644
index 0000000..4d3916c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/message_dots_square.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/message_dots_square.svg.import b/Packs/Kenney-cursors/Outline/message_dots_square.svg.import
new file mode 100644
index 0000000..cadb26a
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/message_dots_square.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://lqiio24hw2s8"
+path="res://.godot/imported/message_dots_square.svg-e176ac0d3cb689e694b7f94176425825.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/message_dots_square.svg"
+dest_files=["res://.godot/imported/message_dots_square.svg-e176ac0d3cb689e694b7f94176425825.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/message_round.svg b/Packs/Kenney-cursors/Outline/message_round.svg
new file mode 100644
index 0000000..3e68c59
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/message_round.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/message_round.svg.import b/Packs/Kenney-cursors/Outline/message_round.svg.import
new file mode 100644
index 0000000..018cb02
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/message_round.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cxbbmc4kayv1e"
+path="res://.godot/imported/message_round.svg-350abc207a3601a4a2d761a2d9cf31a9.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/message_round.svg"
+dest_files=["res://.godot/imported/message_round.svg-350abc207a3601a4a2d761a2d9cf31a9.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/message_square.svg b/Packs/Kenney-cursors/Outline/message_square.svg
new file mode 100644
index 0000000..6aa5da6
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/message_square.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/message_square.svg.import b/Packs/Kenney-cursors/Outline/message_square.svg.import
new file mode 100644
index 0000000..4e30e05
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/message_square.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dunnqq04lwboc"
+path="res://.godot/imported/message_square.svg-4cc71b1c3296c5e8b724a563ed16c882.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/message_square.svg"
+dest_files=["res://.godot/imported/message_square.svg-4cc71b1c3296c5e8b724a563ed16c882.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/navigation_e.svg b/Packs/Kenney-cursors/Outline/navigation_e.svg
new file mode 100644
index 0000000..357fdab
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_e.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/navigation_e.svg.import b/Packs/Kenney-cursors/Outline/navigation_e.svg.import
new file mode 100644
index 0000000..3cf635f
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_e.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bwfy3euyxmi7j"
+path="res://.godot/imported/navigation_e.svg-fdeed60c862f6df20108a46d480a8557.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/navigation_e.svg"
+dest_files=["res://.godot/imported/navigation_e.svg-fdeed60c862f6df20108a46d480a8557.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/navigation_n.svg b/Packs/Kenney-cursors/Outline/navigation_n.svg
new file mode 100644
index 0000000..6dc4adc
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_n.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/navigation_n.svg.import b/Packs/Kenney-cursors/Outline/navigation_n.svg.import
new file mode 100644
index 0000000..8a9dc87
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_n.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cbr6j5g1ipdi4"
+path="res://.godot/imported/navigation_n.svg-9fc9b135abc9475f7567c5ead8fe8eb3.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/navigation_n.svg"
+dest_files=["res://.godot/imported/navigation_n.svg-9fc9b135abc9475f7567c5ead8fe8eb3.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/navigation_ne.svg b/Packs/Kenney-cursors/Outline/navigation_ne.svg
new file mode 100644
index 0000000..5a72ceb
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_ne.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/navigation_ne.svg.import b/Packs/Kenney-cursors/Outline/navigation_ne.svg.import
new file mode 100644
index 0000000..2f683d1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_ne.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cpklilc6jmw0d"
+path="res://.godot/imported/navigation_ne.svg-3ea4014a71b2c070117daa0d9e2be1fe.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/navigation_ne.svg"
+dest_files=["res://.godot/imported/navigation_ne.svg-3ea4014a71b2c070117daa0d9e2be1fe.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/navigation_nw.svg b/Packs/Kenney-cursors/Outline/navigation_nw.svg
new file mode 100644
index 0000000..6c99f7b
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_nw.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/navigation_nw.svg.import b/Packs/Kenney-cursors/Outline/navigation_nw.svg.import
new file mode 100644
index 0000000..acbc961
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_nw.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://doia8nobwmv4n"
+path="res://.godot/imported/navigation_nw.svg-a886713108b74f931f5990b37f8df2ba.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/navigation_nw.svg"
+dest_files=["res://.godot/imported/navigation_nw.svg-a886713108b74f931f5990b37f8df2ba.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/navigation_s.svg b/Packs/Kenney-cursors/Outline/navigation_s.svg
new file mode 100644
index 0000000..f77df1e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_s.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/navigation_s.svg.import b/Packs/Kenney-cursors/Outline/navigation_s.svg.import
new file mode 100644
index 0000000..3f75d29
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_s.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cgx332aowj6dn"
+path="res://.godot/imported/navigation_s.svg-4e49cb7f063e92a74d8cf92f3a268c79.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/navigation_s.svg"
+dest_files=["res://.godot/imported/navigation_s.svg-4e49cb7f063e92a74d8cf92f3a268c79.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/navigation_se.svg b/Packs/Kenney-cursors/Outline/navigation_se.svg
new file mode 100644
index 0000000..c7cdbf5
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_se.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/navigation_se.svg.import b/Packs/Kenney-cursors/Outline/navigation_se.svg.import
new file mode 100644
index 0000000..81b3c18
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_se.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dmn7dlir4ohff"
+path="res://.godot/imported/navigation_se.svg-0f2d94e88e5a45507662e508e68b0bc8.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/navigation_se.svg"
+dest_files=["res://.godot/imported/navigation_se.svg-0f2d94e88e5a45507662e508e68b0bc8.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/navigation_sw.svg b/Packs/Kenney-cursors/Outline/navigation_sw.svg
new file mode 100644
index 0000000..e6fac9f
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_sw.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/navigation_sw.svg.import b/Packs/Kenney-cursors/Outline/navigation_sw.svg.import
new file mode 100644
index 0000000..be565ed
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_sw.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bnwb6728ln3ae"
+path="res://.godot/imported/navigation_sw.svg-ba60d3d59f5bc6eb75ae05129fc1bb8e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/navigation_sw.svg"
+dest_files=["res://.godot/imported/navigation_sw.svg-ba60d3d59f5bc6eb75ae05129fc1bb8e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/navigation_w.svg b/Packs/Kenney-cursors/Outline/navigation_w.svg
new file mode 100644
index 0000000..ef977ab
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_w.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/navigation_w.svg.import b/Packs/Kenney-cursors/Outline/navigation_w.svg.import
new file mode 100644
index 0000000..69ef829
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/navigation_w.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bqg7s8lukudkc"
+path="res://.godot/imported/navigation_w.svg-1b4cbb05a50a10f846faccce2aff79c9.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/navigation_w.svg"
+dest_files=["res://.godot/imported/navigation_w.svg-1b4cbb05a50a10f846faccce2aff79c9.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_a.svg b/Packs/Kenney-cursors/Outline/pointer_a.svg
new file mode 100644
index 0000000..da89970
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_a.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_a.svg.import b/Packs/Kenney-cursors/Outline/pointer_a.svg.import
new file mode 100644
index 0000000..80149b5
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_a.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bljm80ffocv6j"
+path="res://.godot/imported/pointer_a.svg-89a2956916183f486d334208ed27b999.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_a.svg"
+dest_files=["res://.godot/imported/pointer_a.svg-89a2956916183f486d334208ed27b999.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_b.svg b/Packs/Kenney-cursors/Outline/pointer_b.svg
new file mode 100644
index 0000000..0f94d0b
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_b.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_b.svg.import b/Packs/Kenney-cursors/Outline/pointer_b.svg.import
new file mode 100644
index 0000000..b9a2cb6
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://d01nccvb65acg"
+path="res://.godot/imported/pointer_b.svg-344fa603ba67df744180335b2f71f652.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_b.svg"
+dest_files=["res://.godot/imported/pointer_b.svg-344fa603ba67df744180335b2f71f652.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_b_shaded.svg b/Packs/Kenney-cursors/Outline/pointer_b_shaded.svg
new file mode 100644
index 0000000..5ebaeef
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_b_shaded.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_b_shaded.svg.import b/Packs/Kenney-cursors/Outline/pointer_b_shaded.svg.import
new file mode 100644
index 0000000..2cd6e05
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_b_shaded.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://df0jd83k2d27"
+path="res://.godot/imported/pointer_b_shaded.svg-f95abd52b8efae0c0383d3b583fffd26.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_b_shaded.svg"
+dest_files=["res://.godot/imported/pointer_b_shaded.svg-f95abd52b8efae0c0383d3b583fffd26.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_c.svg b/Packs/Kenney-cursors/Outline/pointer_c.svg
new file mode 100644
index 0000000..af03625
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_c.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_c.svg.import b/Packs/Kenney-cursors/Outline/pointer_c.svg.import
new file mode 100644
index 0000000..3a7a6c1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_c.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b5n4h08pomhbj"
+path="res://.godot/imported/pointer_c.svg-53d882ecb906ced6e603b42cd42de435.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_c.svg"
+dest_files=["res://.godot/imported/pointer_c.svg-53d882ecb906ced6e603b42cd42de435.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_c_shaded.svg b/Packs/Kenney-cursors/Outline/pointer_c_shaded.svg
new file mode 100644
index 0000000..1ef7eef
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_c_shaded.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_c_shaded.svg.import b/Packs/Kenney-cursors/Outline/pointer_c_shaded.svg.import
new file mode 100644
index 0000000..54bb39c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_c_shaded.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dcmahfeeuhthh"
+path="res://.godot/imported/pointer_c_shaded.svg-920a1620d78eb56ab3315bad813cfa48.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_c_shaded.svg"
+dest_files=["res://.godot/imported/pointer_c_shaded.svg-920a1620d78eb56ab3315bad813cfa48.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_d.svg b/Packs/Kenney-cursors/Outline/pointer_d.svg
new file mode 100644
index 0000000..0142755
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_d.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_d.svg.import b/Packs/Kenney-cursors/Outline/pointer_d.svg.import
new file mode 100644
index 0000000..347a544
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_d.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://chhbklcai6qy8"
+path="res://.godot/imported/pointer_d.svg-9b8de77c58bb84bffc5aa9ad95833e4c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_d.svg"
+dest_files=["res://.godot/imported/pointer_d.svg-9b8de77c58bb84bffc5aa9ad95833e4c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_e.svg b/Packs/Kenney-cursors/Outline/pointer_e.svg
new file mode 100644
index 0000000..e27b5e7
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_e.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_e.svg.import b/Packs/Kenney-cursors/Outline/pointer_e.svg.import
new file mode 100644
index 0000000..5a5e1df
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_e.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://73hdsf27bbsv"
+path="res://.godot/imported/pointer_e.svg-0b5cf319d84669b62115028fa203255e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_e.svg"
+dest_files=["res://.godot/imported/pointer_e.svg-0b5cf319d84669b62115028fa203255e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_f.svg b/Packs/Kenney-cursors/Outline/pointer_f.svg
new file mode 100644
index 0000000..ccf6672
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_f.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_f.svg.import b/Packs/Kenney-cursors/Outline/pointer_f.svg.import
new file mode 100644
index 0000000..951307d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_f.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ck6sroq6lqs4j"
+path="res://.godot/imported/pointer_f.svg-70623f537966d8d403b9c310ff0ff511.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_f.svg"
+dest_files=["res://.godot/imported/pointer_f.svg-70623f537966d8d403b9c310ff0ff511.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_g.svg b/Packs/Kenney-cursors/Outline/pointer_g.svg
new file mode 100644
index 0000000..1ca40ec
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_g.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_g.svg.import b/Packs/Kenney-cursors/Outline/pointer_g.svg.import
new file mode 100644
index 0000000..e0c88db
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_g.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://0gyb2beoo5p2"
+path="res://.godot/imported/pointer_g.svg-f3f19f671f0bcc0948b4c10ab8f4e5e7.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_g.svg"
+dest_files=["res://.godot/imported/pointer_g.svg-f3f19f671f0bcc0948b4c10ab8f4e5e7.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_h.svg b/Packs/Kenney-cursors/Outline/pointer_h.svg
new file mode 100644
index 0000000..3f5902e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_h.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_h.svg.import b/Packs/Kenney-cursors/Outline/pointer_h.svg.import
new file mode 100644
index 0000000..6138e2b
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_h.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://d1y223wo7uws2"
+path="res://.godot/imported/pointer_h.svg-abf46e13f0cd0efc2cd1ee7bab16c76d.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_h.svg"
+dest_files=["res://.godot/imported/pointer_h.svg-abf46e13f0cd0efc2cd1ee7bab16c76d.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_i.svg b/Packs/Kenney-cursors/Outline/pointer_i.svg
new file mode 100644
index 0000000..4d01b03
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_i.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_i.svg.import b/Packs/Kenney-cursors/Outline/pointer_i.svg.import
new file mode 100644
index 0000000..d1eeb95
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_i.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dctixt0qh33qt"
+path="res://.godot/imported/pointer_i.svg-0acc5c2e89831aad19e82e169e0a11fc.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_i.svg"
+dest_files=["res://.godot/imported/pointer_i.svg-0acc5c2e89831aad19e82e169e0a11fc.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_j.svg b/Packs/Kenney-cursors/Outline/pointer_j.svg
new file mode 100644
index 0000000..d167bf1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_j.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_j.svg.import b/Packs/Kenney-cursors/Outline/pointer_j.svg.import
new file mode 100644
index 0000000..2a5183c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_j.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://e12tqqr3mxjb"
+path="res://.godot/imported/pointer_j.svg-a90a39f5fccd63ef3d4d2560ae23eafb.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_j.svg"
+dest_files=["res://.godot/imported/pointer_j.svg-a90a39f5fccd63ef3d4d2560ae23eafb.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_k.svg b/Packs/Kenney-cursors/Outline/pointer_k.svg
new file mode 100644
index 0000000..3b970d1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_k.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_k.svg.import b/Packs/Kenney-cursors/Outline/pointer_k.svg.import
new file mode 100644
index 0000000..5ac2d34
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_k.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dghh4wbptxxyk"
+path="res://.godot/imported/pointer_k.svg-fc4364b242e2e86d791fa8e88c8fffa5.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_k.svg"
+dest_files=["res://.godot/imported/pointer_k.svg-fc4364b242e2e86d791fa8e88c8fffa5.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_l.svg b/Packs/Kenney-cursors/Outline/pointer_l.svg
new file mode 100644
index 0000000..86199e5
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_l.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_l.svg.import b/Packs/Kenney-cursors/Outline/pointer_l.svg.import
new file mode 100644
index 0000000..e498660
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_l.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dt1f32144ll8y"
+path="res://.godot/imported/pointer_l.svg-81f1ec2bcd358c8f99e9b575ee80d9b3.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_l.svg"
+dest_files=["res://.godot/imported/pointer_l.svg-81f1ec2bcd358c8f99e9b575ee80d9b3.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_scifi_a.svg b/Packs/Kenney-cursors/Outline/pointer_scifi_a.svg
new file mode 100644
index 0000000..ffdb1a8
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_scifi_a.svg
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_scifi_a.svg.import b/Packs/Kenney-cursors/Outline/pointer_scifi_a.svg.import
new file mode 100644
index 0000000..d942b51
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_scifi_a.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://krvpw6o13l34"
+path="res://.godot/imported/pointer_scifi_a.svg-d7a3aee1dbab9682e1847472d85d47cb.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_scifi_a.svg"
+dest_files=["res://.godot/imported/pointer_scifi_a.svg-d7a3aee1dbab9682e1847472d85d47cb.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_scifi_b.svg b/Packs/Kenney-cursors/Outline/pointer_scifi_b.svg
new file mode 100644
index 0000000..8980855
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_scifi_b.svg
@@ -0,0 +1,19 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_scifi_b.svg.import b/Packs/Kenney-cursors/Outline/pointer_scifi_b.svg.import
new file mode 100644
index 0000000..4105e0c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_scifi_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b8v5d52n4c5bu"
+path="res://.godot/imported/pointer_scifi_b.svg-3610d30d47baaace1fd664d306863e6f.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_scifi_b.svg"
+dest_files=["res://.godot/imported/pointer_scifi_b.svg-3610d30d47baaace1fd664d306863e6f.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_toon_a.svg b/Packs/Kenney-cursors/Outline/pointer_toon_a.svg
new file mode 100644
index 0000000..31e4978
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_toon_a.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_toon_a.svg.import b/Packs/Kenney-cursors/Outline/pointer_toon_a.svg.import
new file mode 100644
index 0000000..0b9cccc
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_toon_a.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://caamgh01ku7va"
+path="res://.godot/imported/pointer_toon_a.svg-1ebd6ff6dd1c6dde34f19c2984017fcc.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_toon_a.svg"
+dest_files=["res://.godot/imported/pointer_toon_a.svg-1ebd6ff6dd1c6dde34f19c2984017fcc.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/pointer_toon_b.svg b/Packs/Kenney-cursors/Outline/pointer_toon_b.svg
new file mode 100644
index 0000000..a5725c3
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_toon_b.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/pointer_toon_b.svg.import b/Packs/Kenney-cursors/Outline/pointer_toon_b.svg.import
new file mode 100644
index 0000000..b379446
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/pointer_toon_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dtslbpna3y7m"
+path="res://.godot/imported/pointer_toon_b.svg-030bd795baf78a26e82096d74bb1241e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/pointer_toon_b.svg"
+dest_files=["res://.godot/imported/pointer_toon_b.svg-030bd795baf78a26e82096d74bb1241e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/progress_CCW_25.svg b/Packs/Kenney-cursors/Outline/progress_CCW_25.svg
new file mode 100644
index 0000000..76196ad
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_CCW_25.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/progress_CCW_25.svg.import b/Packs/Kenney-cursors/Outline/progress_CCW_25.svg.import
new file mode 100644
index 0000000..6ebc2c4
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_CCW_25.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bafvx06uvfc3o"
+path="res://.godot/imported/progress_CCW_25.svg-a62e765126ba74a8dd06f7e6fa470b1b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/progress_CCW_25.svg"
+dest_files=["res://.godot/imported/progress_CCW_25.svg-a62e765126ba74a8dd06f7e6fa470b1b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/progress_CCW_50.svg b/Packs/Kenney-cursors/Outline/progress_CCW_50.svg
new file mode 100644
index 0000000..3c2563e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_CCW_50.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/progress_CCW_50.svg.import b/Packs/Kenney-cursors/Outline/progress_CCW_50.svg.import
new file mode 100644
index 0000000..4346ea4
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_CCW_50.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bmf66p02xiadn"
+path="res://.godot/imported/progress_CCW_50.svg-fd4bf32d9fd0f6293f5237f3b62b0ea4.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/progress_CCW_50.svg"
+dest_files=["res://.godot/imported/progress_CCW_50.svg-fd4bf32d9fd0f6293f5237f3b62b0ea4.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/progress_CCW_75.svg b/Packs/Kenney-cursors/Outline/progress_CCW_75.svg
new file mode 100644
index 0000000..8d2fe0d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_CCW_75.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/progress_CCW_75.svg.import b/Packs/Kenney-cursors/Outline/progress_CCW_75.svg.import
new file mode 100644
index 0000000..0c948b6
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_CCW_75.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://drxmle35rtqfb"
+path="res://.godot/imported/progress_CCW_75.svg-634aa72baa541c442970d8fdac35f248.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/progress_CCW_75.svg"
+dest_files=["res://.godot/imported/progress_CCW_75.svg-634aa72baa541c442970d8fdac35f248.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/progress_CW_25.svg b/Packs/Kenney-cursors/Outline/progress_CW_25.svg
new file mode 100644
index 0000000..ee2c911
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_CW_25.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/progress_CW_25.svg.import b/Packs/Kenney-cursors/Outline/progress_CW_25.svg.import
new file mode 100644
index 0000000..fddefec
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_CW_25.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dhydr7rvyqyq"
+path="res://.godot/imported/progress_CW_25.svg-d9d21ff54e0cb9113531180d4e6ef2fa.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/progress_CW_25.svg"
+dest_files=["res://.godot/imported/progress_CW_25.svg-d9d21ff54e0cb9113531180d4e6ef2fa.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/progress_CW_50.svg b/Packs/Kenney-cursors/Outline/progress_CW_50.svg
new file mode 100644
index 0000000..9d8cac6
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_CW_50.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/progress_CW_50.svg.import b/Packs/Kenney-cursors/Outline/progress_CW_50.svg.import
new file mode 100644
index 0000000..5dfdb5f
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_CW_50.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cb4j3i435tgix"
+path="res://.godot/imported/progress_CW_50.svg-98add12bbc9a1dbf487e055193a04e10.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/progress_CW_50.svg"
+dest_files=["res://.godot/imported/progress_CW_50.svg-98add12bbc9a1dbf487e055193a04e10.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/progress_CW_75.svg b/Packs/Kenney-cursors/Outline/progress_CW_75.svg
new file mode 100644
index 0000000..9a0823b
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_CW_75.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/progress_CW_75.svg.import b/Packs/Kenney-cursors/Outline/progress_CW_75.svg.import
new file mode 100644
index 0000000..b42a933
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_CW_75.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cms1bkvn53hrp"
+path="res://.godot/imported/progress_CW_75.svg-2ad5c13151ab7c0ff32d5ba33e026c07.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/progress_CW_75.svg"
+dest_files=["res://.godot/imported/progress_CW_75.svg-2ad5c13151ab7c0ff32d5ba33e026c07.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/progress_empty.svg b/Packs/Kenney-cursors/Outline/progress_empty.svg
new file mode 100644
index 0000000..b542a91
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_empty.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/progress_empty.svg.import b/Packs/Kenney-cursors/Outline/progress_empty.svg.import
new file mode 100644
index 0000000..c713238
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_empty.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://by55p63om2xkq"
+path="res://.godot/imported/progress_empty.svg-b0bcc3cbaef27d7bb3bdb97c67fc7966.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/progress_empty.svg"
+dest_files=["res://.godot/imported/progress_empty.svg-b0bcc3cbaef27d7bb3bdb97c67fc7966.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/progress_full.svg b/Packs/Kenney-cursors/Outline/progress_full.svg
new file mode 100644
index 0000000..9e9fa07
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_full.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/progress_full.svg.import b/Packs/Kenney-cursors/Outline/progress_full.svg.import
new file mode 100644
index 0000000..4eadf9a
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/progress_full.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://5qort3ndttur"
+path="res://.godot/imported/progress_full.svg-5509246b8e327710533eaba572be5392.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/progress_full.svg"
+dest_files=["res://.godot/imported/progress_full.svg-5509246b8e327710533eaba572be5392.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_a_cross.svg b/Packs/Kenney-cursors/Outline/resize_a_cross.svg
new file mode 100644
index 0000000..b411a3d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_a_cross.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_a_cross.svg.import b/Packs/Kenney-cursors/Outline/resize_a_cross.svg.import
new file mode 100644
index 0000000..7d2f647
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_a_cross.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c3pcpb65la6yu"
+path="res://.godot/imported/resize_a_cross.svg-a4d956008126c26462df993b59f7ce56.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_a_cross.svg"
+dest_files=["res://.godot/imported/resize_a_cross.svg-a4d956008126c26462df993b59f7ce56.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_a_cross_diagonal.svg b/Packs/Kenney-cursors/Outline/resize_a_cross_diagonal.svg
new file mode 100644
index 0000000..2a547a7
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_a_cross_diagonal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_a_cross_diagonal.svg.import b/Packs/Kenney-cursors/Outline/resize_a_cross_diagonal.svg.import
new file mode 100644
index 0000000..7dfe17b
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_a_cross_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ccq8t0hstqbmu"
+path="res://.godot/imported/resize_a_cross_diagonal.svg-e798e7cdbc4cf7a15db0c70d3d95637d.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_a_cross_diagonal.svg"
+dest_files=["res://.godot/imported/resize_a_cross_diagonal.svg-e798e7cdbc4cf7a15db0c70d3d95637d.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_a_diagonal.svg b/Packs/Kenney-cursors/Outline/resize_a_diagonal.svg
new file mode 100644
index 0000000..f787a99
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_a_diagonal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_a_diagonal.svg.import b/Packs/Kenney-cursors/Outline/resize_a_diagonal.svg.import
new file mode 100644
index 0000000..60bf361
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_a_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cyvudc617lj3m"
+path="res://.godot/imported/resize_a_diagonal.svg-bcc605ed4d9f6497aec376bd3d3399f1.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_a_diagonal.svg"
+dest_files=["res://.godot/imported/resize_a_diagonal.svg-bcc605ed4d9f6497aec376bd3d3399f1.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_a_diagonal_mirror.svg b/Packs/Kenney-cursors/Outline/resize_a_diagonal_mirror.svg
new file mode 100644
index 0000000..e7472a9
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_a_diagonal_mirror.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_a_diagonal_mirror.svg.import b/Packs/Kenney-cursors/Outline/resize_a_diagonal_mirror.svg.import
new file mode 100644
index 0000000..697917d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_a_diagonal_mirror.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://wfamj3c7ci44"
+path="res://.godot/imported/resize_a_diagonal_mirror.svg-5d9724072e9acd4691243033a1735324.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_a_diagonal_mirror.svg"
+dest_files=["res://.godot/imported/resize_a_diagonal_mirror.svg-5d9724072e9acd4691243033a1735324.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_a_horizontal.svg b/Packs/Kenney-cursors/Outline/resize_a_horizontal.svg
new file mode 100644
index 0000000..0ed8a08
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_a_horizontal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_a_horizontal.svg.import b/Packs/Kenney-cursors/Outline/resize_a_horizontal.svg.import
new file mode 100644
index 0000000..2f6ae9d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_a_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bp882pq0uiuy"
+path="res://.godot/imported/resize_a_horizontal.svg-c015a9915f7d25bb2bcca29b62af669c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_a_horizontal.svg"
+dest_files=["res://.godot/imported/resize_a_horizontal.svg-c015a9915f7d25bb2bcca29b62af669c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_a_vertical.svg b/Packs/Kenney-cursors/Outline/resize_a_vertical.svg
new file mode 100644
index 0000000..c4cfafe
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_a_vertical.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_a_vertical.svg.import b/Packs/Kenney-cursors/Outline/resize_a_vertical.svg.import
new file mode 100644
index 0000000..9e1d372
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_a_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://8lpduq5ebr0w"
+path="res://.godot/imported/resize_a_vertical.svg-bdb779727c2e4cf50aa29b95c37e4688.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_a_vertical.svg"
+dest_files=["res://.godot/imported/resize_a_vertical.svg-bdb779727c2e4cf50aa29b95c37e4688.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_b_cross.svg b/Packs/Kenney-cursors/Outline/resize_b_cross.svg
new file mode 100644
index 0000000..0f374b3
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_b_cross.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_b_cross.svg.import b/Packs/Kenney-cursors/Outline/resize_b_cross.svg.import
new file mode 100644
index 0000000..b7b2258
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_b_cross.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://t8ixqyv6uvex"
+path="res://.godot/imported/resize_b_cross.svg-72176587a869f62d0c92966911678923.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_b_cross.svg"
+dest_files=["res://.godot/imported/resize_b_cross.svg-72176587a869f62d0c92966911678923.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_b_cross_diagonal.svg b/Packs/Kenney-cursors/Outline/resize_b_cross_diagonal.svg
new file mode 100644
index 0000000..f96d5a0
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_b_cross_diagonal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_b_cross_diagonal.svg.import b/Packs/Kenney-cursors/Outline/resize_b_cross_diagonal.svg.import
new file mode 100644
index 0000000..2b0aff7
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_b_cross_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://wbc4kjejtc8v"
+path="res://.godot/imported/resize_b_cross_diagonal.svg-7420d879d84c89c9a7605d596ea8d1c8.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_b_cross_diagonal.svg"
+dest_files=["res://.godot/imported/resize_b_cross_diagonal.svg-7420d879d84c89c9a7605d596ea8d1c8.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_b_diagonal.svg b/Packs/Kenney-cursors/Outline/resize_b_diagonal.svg
new file mode 100644
index 0000000..aa16190
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_b_diagonal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_b_diagonal.svg.import b/Packs/Kenney-cursors/Outline/resize_b_diagonal.svg.import
new file mode 100644
index 0000000..fe87c71
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_b_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://croi3alayb0om"
+path="res://.godot/imported/resize_b_diagonal.svg-0225506fe653e4d1fa3a09fb5a0983ee.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_b_diagonal.svg"
+dest_files=["res://.godot/imported/resize_b_diagonal.svg-0225506fe653e4d1fa3a09fb5a0983ee.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_b_diagonal_mirror.svg b/Packs/Kenney-cursors/Outline/resize_b_diagonal_mirror.svg
new file mode 100644
index 0000000..6999a18
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_b_diagonal_mirror.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_b_diagonal_mirror.svg.import b/Packs/Kenney-cursors/Outline/resize_b_diagonal_mirror.svg.import
new file mode 100644
index 0000000..b614876
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_b_diagonal_mirror.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dmbdlnnpahpou"
+path="res://.godot/imported/resize_b_diagonal_mirror.svg-e00dfccd496165ba0f8875c2b82280b7.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_b_diagonal_mirror.svg"
+dest_files=["res://.godot/imported/resize_b_diagonal_mirror.svg-e00dfccd496165ba0f8875c2b82280b7.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_b_horizontal.svg b/Packs/Kenney-cursors/Outline/resize_b_horizontal.svg
new file mode 100644
index 0000000..81955b2
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_b_horizontal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_b_horizontal.svg.import b/Packs/Kenney-cursors/Outline/resize_b_horizontal.svg.import
new file mode 100644
index 0000000..162946b
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_b_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://0otu4424xs17"
+path="res://.godot/imported/resize_b_horizontal.svg-375174f5289c18cab57b32b11dcfbd1e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_b_horizontal.svg"
+dest_files=["res://.godot/imported/resize_b_horizontal.svg-375174f5289c18cab57b32b11dcfbd1e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_b_vertical.svg b/Packs/Kenney-cursors/Outline/resize_b_vertical.svg
new file mode 100644
index 0000000..c57d388
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_b_vertical.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_b_vertical.svg.import b/Packs/Kenney-cursors/Outline/resize_b_vertical.svg.import
new file mode 100644
index 0000000..b3a0c92
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_b_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bn0ub00pvg0mp"
+path="res://.godot/imported/resize_b_vertical.svg-d50b7246d139f6b34d996e4949f567c7.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_b_vertical.svg"
+dest_files=["res://.godot/imported/resize_b_vertical.svg-d50b7246d139f6b34d996e4949f567c7.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_c_cross.svg b/Packs/Kenney-cursors/Outline/resize_c_cross.svg
new file mode 100644
index 0000000..7ba22c1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_c_cross.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_c_cross.svg.import b/Packs/Kenney-cursors/Outline/resize_c_cross.svg.import
new file mode 100644
index 0000000..7996a25
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_c_cross.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b6djy8ycx617r"
+path="res://.godot/imported/resize_c_cross.svg-21be22bb7379e977e4b4469b8e560e73.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_c_cross.svg"
+dest_files=["res://.godot/imported/resize_c_cross.svg-21be22bb7379e977e4b4469b8e560e73.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_c_cross_diagonal.svg b/Packs/Kenney-cursors/Outline/resize_c_cross_diagonal.svg
new file mode 100644
index 0000000..72665d4
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_c_cross_diagonal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_c_cross_diagonal.svg.import b/Packs/Kenney-cursors/Outline/resize_c_cross_diagonal.svg.import
new file mode 100644
index 0000000..ff1a14a
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_c_cross_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bt2nqr23m3jeb"
+path="res://.godot/imported/resize_c_cross_diagonal.svg-cee243d0b6320bfdb31b893686ffa60a.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_c_cross_diagonal.svg"
+dest_files=["res://.godot/imported/resize_c_cross_diagonal.svg-cee243d0b6320bfdb31b893686ffa60a.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_c_diagonal.svg b/Packs/Kenney-cursors/Outline/resize_c_diagonal.svg
new file mode 100644
index 0000000..34cb635
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_c_diagonal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_c_diagonal.svg.import b/Packs/Kenney-cursors/Outline/resize_c_diagonal.svg.import
new file mode 100644
index 0000000..d9f75a0
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_c_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b8d6r6klixyo8"
+path="res://.godot/imported/resize_c_diagonal.svg-e1d6d75c09ac972e05dc6443ffde5021.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_c_diagonal.svg"
+dest_files=["res://.godot/imported/resize_c_diagonal.svg-e1d6d75c09ac972e05dc6443ffde5021.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_c_diagonal_mirror.svg b/Packs/Kenney-cursors/Outline/resize_c_diagonal_mirror.svg
new file mode 100644
index 0000000..1bdcbc8
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_c_diagonal_mirror.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_c_diagonal_mirror.svg.import b/Packs/Kenney-cursors/Outline/resize_c_diagonal_mirror.svg.import
new file mode 100644
index 0000000..0db131e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_c_diagonal_mirror.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://djfwqhwj08b3q"
+path="res://.godot/imported/resize_c_diagonal_mirror.svg-cf979a6e1a8e8bebff121832d8384e91.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_c_diagonal_mirror.svg"
+dest_files=["res://.godot/imported/resize_c_diagonal_mirror.svg-cf979a6e1a8e8bebff121832d8384e91.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_c_horizontal.svg b/Packs/Kenney-cursors/Outline/resize_c_horizontal.svg
new file mode 100644
index 0000000..df66412
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_c_horizontal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_c_horizontal.svg.import b/Packs/Kenney-cursors/Outline/resize_c_horizontal.svg.import
new file mode 100644
index 0000000..7691b6f
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_c_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://xplsb3oqmmsp"
+path="res://.godot/imported/resize_c_horizontal.svg-4403c2194bc8036fbfc6d42b895089b9.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_c_horizontal.svg"
+dest_files=["res://.godot/imported/resize_c_horizontal.svg-4403c2194bc8036fbfc6d42b895089b9.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_c_vertical.svg b/Packs/Kenney-cursors/Outline/resize_c_vertical.svg
new file mode 100644
index 0000000..9512049
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_c_vertical.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_c_vertical.svg.import b/Packs/Kenney-cursors/Outline/resize_c_vertical.svg.import
new file mode 100644
index 0000000..ca629bf
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_c_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://7fcnlkxhl7j2"
+path="res://.godot/imported/resize_c_vertical.svg-ba6501e662ffce2cdc7da371f9847185.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_c_vertical.svg"
+dest_files=["res://.godot/imported/resize_c_vertical.svg-ba6501e662ffce2cdc7da371f9847185.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_d_cross.svg b/Packs/Kenney-cursors/Outline/resize_d_cross.svg
new file mode 100644
index 0000000..719ed54
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_d_cross.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_d_cross.svg.import b/Packs/Kenney-cursors/Outline/resize_d_cross.svg.import
new file mode 100644
index 0000000..5db2045
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_d_cross.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b2chunadchj0w"
+path="res://.godot/imported/resize_d_cross.svg-9badabc91304f867926e61035367f693.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_d_cross.svg"
+dest_files=["res://.godot/imported/resize_d_cross.svg-9badabc91304f867926e61035367f693.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_d_cross_diagonal.svg b/Packs/Kenney-cursors/Outline/resize_d_cross_diagonal.svg
new file mode 100644
index 0000000..9730687
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_d_cross_diagonal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_d_cross_diagonal.svg.import b/Packs/Kenney-cursors/Outline/resize_d_cross_diagonal.svg.import
new file mode 100644
index 0000000..727401c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_d_cross_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://s6rajxv4u55h"
+path="res://.godot/imported/resize_d_cross_diagonal.svg-a88552684d36c2c616452eb64dd1a406.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_d_cross_diagonal.svg"
+dest_files=["res://.godot/imported/resize_d_cross_diagonal.svg-a88552684d36c2c616452eb64dd1a406.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_d_diagonal.svg b/Packs/Kenney-cursors/Outline/resize_d_diagonal.svg
new file mode 100644
index 0000000..696ac29
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_d_diagonal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_d_diagonal.svg.import b/Packs/Kenney-cursors/Outline/resize_d_diagonal.svg.import
new file mode 100644
index 0000000..cd017ac
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_d_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://baixlqav66h40"
+path="res://.godot/imported/resize_d_diagonal.svg-c3f1f4096c8812ea64773a1d8f538c79.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_d_diagonal.svg"
+dest_files=["res://.godot/imported/resize_d_diagonal.svg-c3f1f4096c8812ea64773a1d8f538c79.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_d_diagonal_mirror.svg b/Packs/Kenney-cursors/Outline/resize_d_diagonal_mirror.svg
new file mode 100644
index 0000000..354ed70
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_d_diagonal_mirror.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_d_diagonal_mirror.svg.import b/Packs/Kenney-cursors/Outline/resize_d_diagonal_mirror.svg.import
new file mode 100644
index 0000000..a5d297d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_d_diagonal_mirror.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bvfh5jf6hngsb"
+path="res://.godot/imported/resize_d_diagonal_mirror.svg-33069b9c8ea4e45823230cc3d62d89ed.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_d_diagonal_mirror.svg"
+dest_files=["res://.godot/imported/resize_d_diagonal_mirror.svg-33069b9c8ea4e45823230cc3d62d89ed.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_d_horizontal.svg b/Packs/Kenney-cursors/Outline/resize_d_horizontal.svg
new file mode 100644
index 0000000..4bbd479
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_d_horizontal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_d_horizontal.svg.import b/Packs/Kenney-cursors/Outline/resize_d_horizontal.svg.import
new file mode 100644
index 0000000..1aca90d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_d_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dpf5d4svw2y53"
+path="res://.godot/imported/resize_d_horizontal.svg-13cb658b537d1f36ff5c95aee18d5021.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_d_horizontal.svg"
+dest_files=["res://.godot/imported/resize_d_horizontal.svg-13cb658b537d1f36ff5c95aee18d5021.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_d_vertical.svg b/Packs/Kenney-cursors/Outline/resize_d_vertical.svg
new file mode 100644
index 0000000..8498784
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_d_vertical.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_d_vertical.svg.import b/Packs/Kenney-cursors/Outline/resize_d_vertical.svg.import
new file mode 100644
index 0000000..51d22e1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_d_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://54lmyt41ft6h"
+path="res://.godot/imported/resize_d_vertical.svg-e569c9bf9a5ad8e79e3b73da49bc8c50.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_d_vertical.svg"
+dest_files=["res://.godot/imported/resize_d_vertical.svg-e569c9bf9a5ad8e79e3b73da49bc8c50.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_e_cross.svg b/Packs/Kenney-cursors/Outline/resize_e_cross.svg
new file mode 100644
index 0000000..faca173
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_e_cross.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_e_cross.svg.import b/Packs/Kenney-cursors/Outline/resize_e_cross.svg.import
new file mode 100644
index 0000000..9480abe
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_e_cross.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b1xpa0j2rbuv4"
+path="res://.godot/imported/resize_e_cross.svg-68e8024f77613e40f593f80711f5b3c6.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_e_cross.svg"
+dest_files=["res://.godot/imported/resize_e_cross.svg-68e8024f77613e40f593f80711f5b3c6.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_e_cross_diagonal.svg b/Packs/Kenney-cursors/Outline/resize_e_cross_diagonal.svg
new file mode 100644
index 0000000..6b1d074
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_e_cross_diagonal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_e_cross_diagonal.svg.import b/Packs/Kenney-cursors/Outline/resize_e_cross_diagonal.svg.import
new file mode 100644
index 0000000..4941c47
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_e_cross_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dotfr4cdltvu3"
+path="res://.godot/imported/resize_e_cross_diagonal.svg-84ca214236260fb723c58b5b211090a9.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_e_cross_diagonal.svg"
+dest_files=["res://.godot/imported/resize_e_cross_diagonal.svg-84ca214236260fb723c58b5b211090a9.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_e_diagonal.svg b/Packs/Kenney-cursors/Outline/resize_e_diagonal.svg
new file mode 100644
index 0000000..a947320
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_e_diagonal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_e_diagonal.svg.import b/Packs/Kenney-cursors/Outline/resize_e_diagonal.svg.import
new file mode 100644
index 0000000..d0ce4c0
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_e_diagonal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://8y3scsd64rdi"
+path="res://.godot/imported/resize_e_diagonal.svg-bcebd895254d3c27e8c88360566b7a04.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_e_diagonal.svg"
+dest_files=["res://.godot/imported/resize_e_diagonal.svg-bcebd895254d3c27e8c88360566b7a04.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_e_diagonal_mirror.svg b/Packs/Kenney-cursors/Outline/resize_e_diagonal_mirror.svg
new file mode 100644
index 0000000..804f325
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_e_diagonal_mirror.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_e_diagonal_mirror.svg.import b/Packs/Kenney-cursors/Outline/resize_e_diagonal_mirror.svg.import
new file mode 100644
index 0000000..4b4b2e9
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_e_diagonal_mirror.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ded1av3wi8f8u"
+path="res://.godot/imported/resize_e_diagonal_mirror.svg-0509b7a9e99b0742eb00182176ae1518.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_e_diagonal_mirror.svg"
+dest_files=["res://.godot/imported/resize_e_diagonal_mirror.svg-0509b7a9e99b0742eb00182176ae1518.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_e_horizontal.svg b/Packs/Kenney-cursors/Outline/resize_e_horizontal.svg
new file mode 100644
index 0000000..7a4d002
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_e_horizontal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_e_horizontal.svg.import b/Packs/Kenney-cursors/Outline/resize_e_horizontal.svg.import
new file mode 100644
index 0000000..d67ae0f
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_e_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b7qictjwlka1b"
+path="res://.godot/imported/resize_e_horizontal.svg-f5be6b8e3699123f452b5bfe654f7c7c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_e_horizontal.svg"
+dest_files=["res://.godot/imported/resize_e_horizontal.svg-f5be6b8e3699123f452b5bfe654f7c7c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_e_vertical.svg b/Packs/Kenney-cursors/Outline/resize_e_vertical.svg
new file mode 100644
index 0000000..382ba94
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_e_vertical.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_e_vertical.svg.import b/Packs/Kenney-cursors/Outline/resize_e_vertical.svg.import
new file mode 100644
index 0000000..66a4abc
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_e_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://byex4vth4o7kt"
+path="res://.godot/imported/resize_e_vertical.svg-b3ae2122c23ff0218e09f9346419964a.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_e_vertical.svg"
+dest_files=["res://.godot/imported/resize_e_vertical.svg-b3ae2122c23ff0218e09f9346419964a.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_horizontal.svg b/Packs/Kenney-cursors/Outline/resize_horizontal.svg
new file mode 100644
index 0000000..29a867d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_horizontal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_horizontal.svg.import b/Packs/Kenney-cursors/Outline/resize_horizontal.svg.import
new file mode 100644
index 0000000..4640d26
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b42vkr27gxuqm"
+path="res://.godot/imported/resize_horizontal.svg-7870543d3d5a19e5954342bbd8b88749.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_horizontal.svg"
+dest_files=["res://.godot/imported/resize_horizontal.svg-7870543d3d5a19e5954342bbd8b88749.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/resize_vertical.svg b/Packs/Kenney-cursors/Outline/resize_vertical.svg
new file mode 100644
index 0000000..d326969
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_vertical.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/resize_vertical.svg.import b/Packs/Kenney-cursors/Outline/resize_vertical.svg.import
new file mode 100644
index 0000000..f69ee16
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/resize_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c113pebb41woo"
+path="res://.godot/imported/resize_vertical.svg-cdf6f0a9878bd2258850719039d68d7e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/resize_vertical.svg"
+dest_files=["res://.godot/imported/resize_vertical.svg-cdf6f0a9878bd2258850719039d68d7e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/rotate_ccw.svg b/Packs/Kenney-cursors/Outline/rotate_ccw.svg
new file mode 100644
index 0000000..4840c1d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/rotate_ccw.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/rotate_ccw.svg.import b/Packs/Kenney-cursors/Outline/rotate_ccw.svg.import
new file mode 100644
index 0000000..c5b31a4
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/rotate_ccw.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://rihxn2wwlvth"
+path="res://.godot/imported/rotate_ccw.svg-523da075c053d7da54622b243ee2ebff.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/rotate_ccw.svg"
+dest_files=["res://.godot/imported/rotate_ccw.svg-523da075c053d7da54622b243ee2ebff.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/rotate_cw.svg b/Packs/Kenney-cursors/Outline/rotate_cw.svg
new file mode 100644
index 0000000..05641b9
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/rotate_cw.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/rotate_cw.svg.import b/Packs/Kenney-cursors/Outline/rotate_cw.svg.import
new file mode 100644
index 0000000..91ba598
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/rotate_cw.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://d1hbp16bhuvu7"
+path="res://.godot/imported/rotate_cw.svg-cd272690bf3629beea85e67ab50d8086.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/rotate_cw.svg"
+dest_files=["res://.godot/imported/rotate_cw.svg-cd272690bf3629beea85e67ab50d8086.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/rotate_horizontal_down.svg b/Packs/Kenney-cursors/Outline/rotate_horizontal_down.svg
new file mode 100644
index 0000000..18f00e9
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/rotate_horizontal_down.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/rotate_horizontal_down.svg.import b/Packs/Kenney-cursors/Outline/rotate_horizontal_down.svg.import
new file mode 100644
index 0000000..6c14f81
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/rotate_horizontal_down.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bjwhovlmkyi78"
+path="res://.godot/imported/rotate_horizontal_down.svg-1a43ab924efbef121801042bec91ff9b.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/rotate_horizontal_down.svg"
+dest_files=["res://.godot/imported/rotate_horizontal_down.svg-1a43ab924efbef121801042bec91ff9b.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/rotate_horizontal_up.svg b/Packs/Kenney-cursors/Outline/rotate_horizontal_up.svg
new file mode 100644
index 0000000..0da3803
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/rotate_horizontal_up.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/rotate_horizontal_up.svg.import b/Packs/Kenney-cursors/Outline/rotate_horizontal_up.svg.import
new file mode 100644
index 0000000..8a59316
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/rotate_horizontal_up.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://diimy2h8sdwhy"
+path="res://.godot/imported/rotate_horizontal_up.svg-7a845a18eff106573d4a590a12e9661c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/rotate_horizontal_up.svg"
+dest_files=["res://.godot/imported/rotate_horizontal_up.svg-7a845a18eff106573d4a590a12e9661c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/stairs.svg b/Packs/Kenney-cursors/Outline/stairs.svg
new file mode 100644
index 0000000..b6b96aa
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/stairs.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/stairs.svg.import b/Packs/Kenney-cursors/Outline/stairs.svg.import
new file mode 100644
index 0000000..6134ea5
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/stairs.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://di72edvvemevv"
+path="res://.godot/imported/stairs.svg-3485d917ac2f78c2fb2b62a2f6436fcc.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/stairs.svg"
+dest_files=["res://.godot/imported/stairs.svg-3485d917ac2f78c2fb2b62a2f6436fcc.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/stairs_down.svg b/Packs/Kenney-cursors/Outline/stairs_down.svg
new file mode 100644
index 0000000..da1e3c6
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/stairs_down.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/stairs_down.svg.import b/Packs/Kenney-cursors/Outline/stairs_down.svg.import
new file mode 100644
index 0000000..4ae9cb8
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/stairs_down.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cry4q0eqsr1nd"
+path="res://.godot/imported/stairs_down.svg-9be0eacada0e165493f11bc2fbe0a695.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/stairs_down.svg"
+dest_files=["res://.godot/imported/stairs_down.svg-9be0eacada0e165493f11bc2fbe0a695.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/stairs_up.svg b/Packs/Kenney-cursors/Outline/stairs_up.svg
new file mode 100644
index 0000000..621eb10
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/stairs_up.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/stairs_up.svg.import b/Packs/Kenney-cursors/Outline/stairs_up.svg.import
new file mode 100644
index 0000000..61d9b7e
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/stairs_up.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ddnqvskexw4s8"
+path="res://.godot/imported/stairs_up.svg-56e7c2383b163599e822dece821ca0c7.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/stairs_up.svg"
+dest_files=["res://.godot/imported/stairs_up.svg-56e7c2383b163599e822dece821ca0c7.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/steps.svg b/Packs/Kenney-cursors/Outline/steps.svg
new file mode 100644
index 0000000..c71bf94
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/steps.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/steps.svg.import b/Packs/Kenney-cursors/Outline/steps.svg.import
new file mode 100644
index 0000000..7e60152
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/steps.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dtnvfhpg0fmlk"
+path="res://.godot/imported/steps.svg-2347848f4bd646a67e0345853468f64c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/steps.svg"
+dest_files=["res://.godot/imported/steps.svg-2347848f4bd646a67e0345853468f64c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/target_a.svg b/Packs/Kenney-cursors/Outline/target_a.svg
new file mode 100644
index 0000000..127039c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/target_a.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/target_a.svg.import b/Packs/Kenney-cursors/Outline/target_a.svg.import
new file mode 100644
index 0000000..a1abb46
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/target_a.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://d00me7joglnn8"
+path="res://.godot/imported/target_a.svg-9d4683491a30289b45a48d8fd80955d6.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/target_a.svg"
+dest_files=["res://.godot/imported/target_a.svg-9d4683491a30289b45a48d8fd80955d6.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/target_b.svg b/Packs/Kenney-cursors/Outline/target_b.svg
new file mode 100644
index 0000000..5662630
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/target_b.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/target_b.svg.import b/Packs/Kenney-cursors/Outline/target_b.svg.import
new file mode 100644
index 0000000..1cd27cf
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/target_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://d1ymwdhgej111"
+path="res://.godot/imported/target_b.svg-ebf34c1800b5b98724223099b40a2bfa.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/target_b.svg"
+dest_files=["res://.godot/imported/target_b.svg-ebf34c1800b5b98724223099b40a2bfa.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/target_round_a.svg b/Packs/Kenney-cursors/Outline/target_round_a.svg
new file mode 100644
index 0000000..4f6b80a
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/target_round_a.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/target_round_a.svg.import b/Packs/Kenney-cursors/Outline/target_round_a.svg.import
new file mode 100644
index 0000000..c4bb441
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/target_round_a.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c1s5dusychhhb"
+path="res://.godot/imported/target_round_a.svg-b1a85998599241598d112140d4f05615.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/target_round_a.svg"
+dest_files=["res://.godot/imported/target_round_a.svg-b1a85998599241598d112140d4f05615.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/target_round_b.svg b/Packs/Kenney-cursors/Outline/target_round_b.svg
new file mode 100644
index 0000000..6cd3892
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/target_round_b.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/target_round_b.svg.import b/Packs/Kenney-cursors/Outline/target_round_b.svg.import
new file mode 100644
index 0000000..9290c63
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/target_round_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cry8y8v2ipj0p"
+path="res://.godot/imported/target_round_b.svg-937be15ab409ee0b90d7e25d4d0b3fb0.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/target_round_b.svg"
+dest_files=["res://.godot/imported/target_round_b.svg-937be15ab409ee0b90d7e25d4d0b3fb0.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tool_axe.svg b/Packs/Kenney-cursors/Outline/tool_axe.svg
new file mode 100644
index 0000000..b8c0d5a
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_axe.svg
@@ -0,0 +1,23 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tool_axe.svg.import b/Packs/Kenney-cursors/Outline/tool_axe.svg.import
new file mode 100644
index 0000000..ea4a667
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_axe.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bqb2vcj1ywb4k"
+path="res://.godot/imported/tool_axe.svg-a09b7ed0a7d07655d271306f54f8efbb.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tool_axe.svg"
+dest_files=["res://.godot/imported/tool_axe.svg-a09b7ed0a7d07655d271306f54f8efbb.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tool_axe_single.svg b/Packs/Kenney-cursors/Outline/tool_axe_single.svg
new file mode 100644
index 0000000..036e0e8
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_axe_single.svg
@@ -0,0 +1,18 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tool_axe_single.svg.import b/Packs/Kenney-cursors/Outline/tool_axe_single.svg.import
new file mode 100644
index 0000000..bcc3b6f
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_axe_single.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b37bqxp2nc2xm"
+path="res://.godot/imported/tool_axe_single.svg-271b974e893acc61c4fbb96d25cea0bd.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tool_axe_single.svg"
+dest_files=["res://.godot/imported/tool_axe_single.svg-271b974e893acc61c4fbb96d25cea0bd.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tool_bomb.svg b/Packs/Kenney-cursors/Outline/tool_bomb.svg
new file mode 100644
index 0000000..e44f7da
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_bomb.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tool_bomb.svg.import b/Packs/Kenney-cursors/Outline/tool_bomb.svg.import
new file mode 100644
index 0000000..3a85fa4
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_bomb.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://c0ftrk6jn1rv2"
+path="res://.godot/imported/tool_bomb.svg-a5ce893667632d28bc2ac6d368a80317.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tool_bomb.svg"
+dest_files=["res://.godot/imported/tool_bomb.svg-a5ce893667632d28bc2ac6d368a80317.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tool_bow.svg b/Packs/Kenney-cursors/Outline/tool_bow.svg
new file mode 100644
index 0000000..9287850
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_bow.svg
@@ -0,0 +1,18 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tool_bow.svg.import b/Packs/Kenney-cursors/Outline/tool_bow.svg.import
new file mode 100644
index 0000000..3dc7406
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_bow.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dgigefuy3dcwj"
+path="res://.godot/imported/tool_bow.svg-0641a42388d09f96964b5bb4b9a80eb6.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tool_bow.svg"
+dest_files=["res://.godot/imported/tool_bow.svg-0641a42388d09f96964b5bb4b9a80eb6.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tool_hammer.svg b/Packs/Kenney-cursors/Outline/tool_hammer.svg
new file mode 100644
index 0000000..073719b
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_hammer.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tool_hammer.svg.import b/Packs/Kenney-cursors/Outline/tool_hammer.svg.import
new file mode 100644
index 0000000..1b88c80
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_hammer.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bw53c057vfmy5"
+path="res://.godot/imported/tool_hammer.svg-82719c4ae2af7b5cfb3e8d9245d640c0.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tool_hammer.svg"
+dest_files=["res://.godot/imported/tool_hammer.svg-82719c4ae2af7b5cfb3e8d9245d640c0.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tool_hoe.svg b/Packs/Kenney-cursors/Outline/tool_hoe.svg
new file mode 100644
index 0000000..5405009
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_hoe.svg
@@ -0,0 +1,18 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tool_hoe.svg.import b/Packs/Kenney-cursors/Outline/tool_hoe.svg.import
new file mode 100644
index 0000000..f084646
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_hoe.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dutbkep2yrh2p"
+path="res://.godot/imported/tool_hoe.svg-87f5ba077fab4e7891b961523b0efcf0.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tool_hoe.svg"
+dest_files=["res://.godot/imported/tool_hoe.svg-87f5ba077fab4e7891b961523b0efcf0.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tool_pickaxe.svg b/Packs/Kenney-cursors/Outline/tool_pickaxe.svg
new file mode 100644
index 0000000..cd28206
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_pickaxe.svg
@@ -0,0 +1,23 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tool_pickaxe.svg.import b/Packs/Kenney-cursors/Outline/tool_pickaxe.svg.import
new file mode 100644
index 0000000..039f6b9
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_pickaxe.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bycegvoirp0sm"
+path="res://.godot/imported/tool_pickaxe.svg-230237408e234c2240f5c8a11fbbc1d6.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tool_pickaxe.svg"
+dest_files=["res://.godot/imported/tool_pickaxe.svg-230237408e234c2240f5c8a11fbbc1d6.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tool_shovel.svg b/Packs/Kenney-cursors/Outline/tool_shovel.svg
new file mode 100644
index 0000000..f9756b8
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_shovel.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tool_shovel.svg.import b/Packs/Kenney-cursors/Outline/tool_shovel.svg.import
new file mode 100644
index 0000000..3402303
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_shovel.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bglk55i7pdol1"
+path="res://.godot/imported/tool_shovel.svg-fc42a2387531763840cbb9597fb3bff7.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tool_shovel.svg"
+dest_files=["res://.godot/imported/tool_shovel.svg-fc42a2387531763840cbb9597fb3bff7.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tool_sword_a.svg b/Packs/Kenney-cursors/Outline/tool_sword_a.svg
new file mode 100644
index 0000000..7e8d4f4
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_sword_a.svg
@@ -0,0 +1,14 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tool_sword_a.svg.import b/Packs/Kenney-cursors/Outline/tool_sword_a.svg.import
new file mode 100644
index 0000000..9f07b38
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_sword_a.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://be1xgx4tw1otv"
+path="res://.godot/imported/tool_sword_a.svg-727de29601f34da6e2d9dd060918a5b7.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tool_sword_a.svg"
+dest_files=["res://.godot/imported/tool_sword_a.svg-727de29601f34da6e2d9dd060918a5b7.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tool_sword_b.svg b/Packs/Kenney-cursors/Outline/tool_sword_b.svg
new file mode 100644
index 0000000..a868df0
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_sword_b.svg
@@ -0,0 +1,14 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tool_sword_b.svg.import b/Packs/Kenney-cursors/Outline/tool_sword_b.svg.import
new file mode 100644
index 0000000..ac51586
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_sword_b.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dl0pirymxe1xy"
+path="res://.godot/imported/tool_sword_b.svg-145a122b4a8eebc6285bfcfbaccb2959.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tool_sword_b.svg"
+dest_files=["res://.godot/imported/tool_sword_b.svg-145a122b4a8eebc6285bfcfbaccb2959.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tool_torch.svg b/Packs/Kenney-cursors/Outline/tool_torch.svg
new file mode 100644
index 0000000..bc150b2
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_torch.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tool_torch.svg.import b/Packs/Kenney-cursors/Outline/tool_torch.svg.import
new file mode 100644
index 0000000..0de6a56
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_torch.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://m3012vfyms5w"
+path="res://.godot/imported/tool_torch.svg-e6ab2dfd7ce828f3edf8c3bc4514e8b6.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tool_torch.svg"
+dest_files=["res://.godot/imported/tool_torch.svg-e6ab2dfd7ce828f3edf8c3bc4514e8b6.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tool_wand.svg b/Packs/Kenney-cursors/Outline/tool_wand.svg
new file mode 100644
index 0000000..341634f
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_wand.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tool_wand.svg.import b/Packs/Kenney-cursors/Outline/tool_wand.svg.import
new file mode 100644
index 0000000..1603a98
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_wand.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://uk2sx7hfwif"
+path="res://.godot/imported/tool_wand.svg-d0d4f66dcc93234a12f1ad36638fa974.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tool_wand.svg"
+dest_files=["res://.godot/imported/tool_wand.svg-d0d4f66dcc93234a12f1ad36638fa974.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tool_watering_can.svg b/Packs/Kenney-cursors/Outline/tool_watering_can.svg
new file mode 100644
index 0000000..4b7cdc1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_watering_can.svg
@@ -0,0 +1,18 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tool_watering_can.svg.import b/Packs/Kenney-cursors/Outline/tool_watering_can.svg.import
new file mode 100644
index 0000000..5b65b29
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_watering_can.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dyw2jou3o6qih"
+path="res://.godot/imported/tool_watering_can.svg-c6af4fc5d3ba1dd18e43b7f456459981.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tool_watering_can.svg"
+dest_files=["res://.godot/imported/tool_watering_can.svg-c6af4fc5d3ba1dd18e43b7f456459981.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tool_wrench.svg b/Packs/Kenney-cursors/Outline/tool_wrench.svg
new file mode 100644
index 0000000..6a8ba81
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_wrench.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tool_wrench.svg.import b/Packs/Kenney-cursors/Outline/tool_wrench.svg.import
new file mode 100644
index 0000000..ba0f760
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tool_wrench.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://byweq7peaafd0"
+path="res://.godot/imported/tool_wrench.svg-51f5e3c41d60b2fc9ddd9fdde2ed3b8e.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tool_wrench.svg"
+dest_files=["res://.godot/imported/tool_wrench.svg-51f5e3c41d60b2fc9ddd9fdde2ed3b8e.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tracking_horizontal.svg b/Packs/Kenney-cursors/Outline/tracking_horizontal.svg
new file mode 100644
index 0000000..fc852da
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tracking_horizontal.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tracking_horizontal.svg.import b/Packs/Kenney-cursors/Outline/tracking_horizontal.svg.import
new file mode 100644
index 0000000..4ecd2eb
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tracking_horizontal.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dx6078fnyhas0"
+path="res://.godot/imported/tracking_horizontal.svg-0bc7d57140a223d756fc0178ea429a6a.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tracking_horizontal.svg"
+dest_files=["res://.godot/imported/tracking_horizontal.svg-0bc7d57140a223d756fc0178ea429a6a.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tracking_horizontal_down.svg b/Packs/Kenney-cursors/Outline/tracking_horizontal_down.svg
new file mode 100644
index 0000000..fc4cc2b
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tracking_horizontal_down.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tracking_horizontal_down.svg.import b/Packs/Kenney-cursors/Outline/tracking_horizontal_down.svg.import
new file mode 100644
index 0000000..be01c7d
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tracking_horizontal_down.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b43l2pgl1kb7k"
+path="res://.godot/imported/tracking_horizontal_down.svg-48a1aafaf0cfd523e77e003854d5b237.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tracking_horizontal_down.svg"
+dest_files=["res://.godot/imported/tracking_horizontal_down.svg-48a1aafaf0cfd523e77e003854d5b237.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tracking_horizontal_up.svg b/Packs/Kenney-cursors/Outline/tracking_horizontal_up.svg
new file mode 100644
index 0000000..d792014
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tracking_horizontal_up.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tracking_horizontal_up.svg.import b/Packs/Kenney-cursors/Outline/tracking_horizontal_up.svg.import
new file mode 100644
index 0000000..d956a57
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tracking_horizontal_up.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bg2tuy4ra5h1v"
+path="res://.godot/imported/tracking_horizontal_up.svg-a705548042ea3658b870842ba91c6d18.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tracking_horizontal_up.svg"
+dest_files=["res://.godot/imported/tracking_horizontal_up.svg-a705548042ea3658b870842ba91c6d18.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tracking_vertical.svg b/Packs/Kenney-cursors/Outline/tracking_vertical.svg
new file mode 100644
index 0000000..94d77a8
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tracking_vertical.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tracking_vertical.svg.import b/Packs/Kenney-cursors/Outline/tracking_vertical.svg.import
new file mode 100644
index 0000000..ae7afa1
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tracking_vertical.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://bxv5412hsv8u3"
+path="res://.godot/imported/tracking_vertical.svg-7edbcab5fee1c4ef87a8504dcf14f9c6.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tracking_vertical.svg"
+dest_files=["res://.godot/imported/tracking_vertical.svg-7edbcab5fee1c4ef87a8504dcf14f9c6.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tracking_vertical_left.svg b/Packs/Kenney-cursors/Outline/tracking_vertical_left.svg
new file mode 100644
index 0000000..db711d5
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tracking_vertical_left.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tracking_vertical_left.svg.import b/Packs/Kenney-cursors/Outline/tracking_vertical_left.svg.import
new file mode 100644
index 0000000..650c8f9
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tracking_vertical_left.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://iatdndfbn0v5"
+path="res://.godot/imported/tracking_vertical_left.svg-7dcffbab7c40529d323cddb7485cc007.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tracking_vertical_left.svg"
+dest_files=["res://.godot/imported/tracking_vertical_left.svg-7dcffbab7c40529d323cddb7485cc007.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/tracking_vertical_right.svg b/Packs/Kenney-cursors/Outline/tracking_vertical_right.svg
new file mode 100644
index 0000000..548c24b
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tracking_vertical_right.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/tracking_vertical_right.svg.import b/Packs/Kenney-cursors/Outline/tracking_vertical_right.svg.import
new file mode 100644
index 0000000..e940898
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/tracking_vertical_right.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://ym1dt10gi0i4"
+path="res://.godot/imported/tracking_vertical_right.svg-b5392505488bdb348728fecfaca27d51.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/tracking_vertical_right.svg"
+dest_files=["res://.godot/imported/tracking_vertical_right.svg-b5392505488bdb348728fecfaca27d51.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/zoom.svg b/Packs/Kenney-cursors/Outline/zoom.svg
new file mode 100644
index 0000000..78a4d27
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/zoom.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/zoom.svg.import b/Packs/Kenney-cursors/Outline/zoom.svg.import
new file mode 100644
index 0000000..a84e625
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/zoom.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b5mx7a1lw0lsc"
+path="res://.godot/imported/zoom.svg-629461f2550509fe61c7447dc94456f1.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/zoom.svg"
+dest_files=["res://.godot/imported/zoom.svg-629461f2550509fe61c7447dc94456f1.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/zoom_in.svg b/Packs/Kenney-cursors/Outline/zoom_in.svg
new file mode 100644
index 0000000..cea07ba
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/zoom_in.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/zoom_in.svg.import b/Packs/Kenney-cursors/Outline/zoom_in.svg.import
new file mode 100644
index 0000000..e371b84
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/zoom_in.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://cted6q1mb7oyt"
+path="res://.godot/imported/zoom_in.svg-078089f9b76240a25a36a170d40af25c.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/zoom_in.svg"
+dest_files=["res://.godot/imported/zoom_in.svg-078089f9b76240a25a36a170d40af25c.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/zoom_out.svg b/Packs/Kenney-cursors/Outline/zoom_out.svg
new file mode 100644
index 0000000..aeee54a
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/zoom_out.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/zoom_out.svg.import b/Packs/Kenney-cursors/Outline/zoom_out.svg.import
new file mode 100644
index 0000000..81ba7b8
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/zoom_out.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://dcmtgelqalit4"
+path="res://.godot/imported/zoom_out.svg-1843a175ed29d2d7d6f6da5670851282.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/zoom_out.svg"
+dest_files=["res://.godot/imported/zoom_out.svg-1843a175ed29d2d7d6f6da5670851282.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/Packs/Kenney-cursors/Outline/zoom_reset.svg b/Packs/Kenney-cursors/Outline/zoom_reset.svg
new file mode 100644
index 0000000..056139c
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/zoom_reset.svg
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Packs/Kenney-cursors/Outline/zoom_reset.svg.import b/Packs/Kenney-cursors/Outline/zoom_reset.svg.import
new file mode 100644
index 0000000..99804d7
--- /dev/null
+++ b/Packs/Kenney-cursors/Outline/zoom_reset.svg.import
@@ -0,0 +1,18 @@
+[remap]
+
+importer="svg"
+type="SVGTexture"
+uid="uid://b6hnxulto6hq0"
+path="res://.godot/imported/zoom_reset.svg-ad4384416eb0796f074efd7311dee7dd.svgtex"
+
+[deps]
+
+source_file="res://Packs/Kenney-cursors/Outline/zoom_reset.svg"
+dest_files=["res://.godot/imported/zoom_reset.svg-ad4384416eb0796f074efd7311dee7dd.svgtex"]
+
+[params]
+
+base_scale=1.0
+saturation=1.0
+color_map={}
+compress=true
diff --git a/export_presets.cfg b/export_presets.cfg
index fb243c5..423d74c 100644
--- a/export_presets.cfg
+++ b/export_presets.cfg
@@ -6,8 +6,8 @@ runnable=true
advanced_options=false
dedicated_server=false
custom_features=""
-export_filter="scenes"
-export_files=PackedStringArray("res://Packs/Maps/gym.tscn")
+export_filter="resources"
+export_files=PackedStringArray("res://Maps/gym.tscn", "res://Core/player.tscn", "res://Packs/Kenney-cursors/Outline/arrow_e.svg", "res://Packs/Kenney-cursors/Outline/arrow_n.svg", "res://Packs/Kenney-cursors/Outline/arrow_ne.svg", "res://Packs/Kenney-cursors/Outline/arrow_nw.svg", "res://Packs/Kenney-cursors/Outline/arrow_s.svg", "res://Packs/Kenney-cursors/Outline/arrow_se.svg", "res://Packs/Kenney-cursors/Outline/arrow_sw.svg", "res://Packs/Kenney-cursors/Outline/arrow_w.svg", "res://Packs/Kenney-cursors/Outline/boot.svg", "res://Packs/Kenney-cursors/Outline/bracket_a_horizontal.svg", "res://Packs/Kenney-cursors/Outline/bracket_a_vertical.svg", "res://Packs/Kenney-cursors/Outline/bracket_b_horizontal.svg", "res://Packs/Kenney-cursors/Outline/bracket_b_vertical.svg", "res://Packs/Kenney-cursors/Outline/busy_circle.svg", "res://Packs/Kenney-cursors/Outline/busy_circle_fade.svg", "res://Packs/Kenney-cursors/Outline/busy_hourglass.svg", "res://Packs/Kenney-cursors/Outline/busy_hourglass_outline.svg", "res://Packs/Kenney-cursors/Outline/busy_hourglass_outline_detail.svg", "res://Packs/Kenney-cursors/Outline/cross_large.svg", "res://Packs/Kenney-cursors/Outline/cross_small.svg", "res://Packs/Kenney-cursors/Outline/cursor_alias.svg", "res://Packs/Kenney-cursors/Outline/cursor_busy.svg", "res://Packs/Kenney-cursors/Outline/cursor_cogs.svg", "res://Packs/Kenney-cursors/Outline/cursor_copy.svg", "res://Packs/Kenney-cursors/Outline/cursor_disabled.svg", "res://Packs/Kenney-cursors/Outline/cursor_exclamation.svg", "res://Packs/Kenney-cursors/Outline/cursor_help.svg", "res://Packs/Kenney-cursors/Outline/cursor_menu.svg", "res://Packs/Kenney-cursors/Outline/cursor_none.svg", "res://Packs/Kenney-cursors/Outline/disabled.svg", "res://Packs/Kenney-cursors/Outline/door.svg", "res://Packs/Kenney-cursors/Outline/door_disabled.svg", "res://Packs/Kenney-cursors/Outline/door_enter.svg", "res://Packs/Kenney-cursors/Outline/door_exit.svg", "res://Packs/Kenney-cursors/Outline/dot_large.svg", "res://Packs/Kenney-cursors/Outline/dot_small.svg", "res://Packs/Kenney-cursors/Outline/drawing_brush.svg", "res://Packs/Kenney-cursors/Outline/drawing_brush_large.svg", "res://Packs/Kenney-cursors/Outline/drawing_bucket.svg", "res://Packs/Kenney-cursors/Outline/drawing_eraser.svg", "res://Packs/Kenney-cursors/Outline/drawing_pen.svg", "res://Packs/Kenney-cursors/Outline/drawing_pencil.svg", "res://Packs/Kenney-cursors/Outline/drawing_picker.svg", "res://Packs/Kenney-cursors/Outline/drawing_spray.svg", "res://Packs/Kenney-cursors/Outline/gauntlet_default.svg", "res://Packs/Kenney-cursors/Outline/gauntlet_open.svg", "res://Packs/Kenney-cursors/Outline/gauntlet_point.svg", "res://Packs/Kenney-cursors/Outline/hand_closed.svg", "res://Packs/Kenney-cursors/Outline/hand_open.svg", "res://Packs/Kenney-cursors/Outline/hand_point.svg", "res://Packs/Kenney-cursors/Outline/hand_point_e.svg", "res://Packs/Kenney-cursors/Outline/hand_point_n.svg", "res://Packs/Kenney-cursors/Outline/hand_small_closed.svg", "res://Packs/Kenney-cursors/Outline/hand_small_open.svg", "res://Packs/Kenney-cursors/Outline/hand_small_point.svg", "res://Packs/Kenney-cursors/Outline/hand_small_point_e.svg", "res://Packs/Kenney-cursors/Outline/hand_small_point_n.svg", "res://Packs/Kenney-cursors/Outline/hand_thin_closed.svg", "res://Packs/Kenney-cursors/Outline/hand_thin_open.svg", "res://Packs/Kenney-cursors/Outline/hand_thin_point.svg", "res://Packs/Kenney-cursors/Outline/hand_thin_small_closed.svg", "res://Packs/Kenney-cursors/Outline/hand_thin_small_open.svg", "res://Packs/Kenney-cursors/Outline/hand_thin_small_point.svg", "res://Packs/Kenney-cursors/Outline/line_cross.svg", "res://Packs/Kenney-cursors/Outline/line_horizontal.svg", "res://Packs/Kenney-cursors/Outline/line_vertical.svg", "res://Packs/Kenney-cursors/Outline/lock.svg", "res://Packs/Kenney-cursors/Outline/lock_unlocked.svg", "res://Packs/Kenney-cursors/Outline/look_a.svg", "res://Packs/Kenney-cursors/Outline/look_b.svg", "res://Packs/Kenney-cursors/Outline/look_c.svg", "res://Packs/Kenney-cursors/Outline/look_d.svg", "res://Packs/Kenney-cursors/Outline/mark_exclamation.svg", "res://Packs/Kenney-cursors/Outline/mark_exclamation_pointer_b.svg", "res://Packs/Kenney-cursors/Outline/mark_question.svg", "res://Packs/Kenney-cursors/Outline/mark_question_pointer_b.svg", "res://Packs/Kenney-cursors/Outline/message_dots_round.svg", "res://Packs/Kenney-cursors/Outline/message_dots_square.svg", "res://Packs/Kenney-cursors/Outline/message_round.svg", "res://Packs/Kenney-cursors/Outline/message_square.svg", "res://Packs/Kenney-cursors/Outline/navigation_e.svg", "res://Packs/Kenney-cursors/Outline/navigation_n.svg", "res://Packs/Kenney-cursors/Outline/navigation_ne.svg", "res://Packs/Kenney-cursors/Outline/navigation_nw.svg", "res://Packs/Kenney-cursors/Outline/navigation_s.svg", "res://Packs/Kenney-cursors/Outline/navigation_se.svg", "res://Packs/Kenney-cursors/Outline/navigation_sw.svg", "res://Packs/Kenney-cursors/Outline/navigation_w.svg", "res://Packs/Kenney-cursors/Outline/pointer_a.svg", "res://Packs/Kenney-cursors/Outline/pointer_b.svg", "res://Packs/Kenney-cursors/Outline/pointer_b_shaded.svg", "res://Packs/Kenney-cursors/Outline/pointer_c.svg", "res://Packs/Kenney-cursors/Outline/pointer_c_shaded.svg", "res://Packs/Kenney-cursors/Outline/pointer_d.svg", "res://Packs/Kenney-cursors/Outline/pointer_e.svg", "res://Packs/Kenney-cursors/Outline/pointer_f.svg", "res://Packs/Kenney-cursors/Outline/pointer_g.svg", "res://Packs/Kenney-cursors/Outline/pointer_h.svg", "res://Packs/Kenney-cursors/Outline/pointer_i.svg", "res://Packs/Kenney-cursors/Outline/pointer_j.svg", "res://Packs/Kenney-cursors/Outline/pointer_k.svg", "res://Packs/Kenney-cursors/Outline/pointer_l.svg", "res://Packs/Kenney-cursors/Outline/pointer_scifi_a.svg", "res://Packs/Kenney-cursors/Outline/pointer_scifi_b.svg", "res://Packs/Kenney-cursors/Outline/pointer_toon_a.svg", "res://Packs/Kenney-cursors/Outline/pointer_toon_b.svg", "res://Packs/Kenney-cursors/Outline/progress_CCW_25.svg", "res://Packs/Kenney-cursors/Outline/progress_CCW_50.svg", "res://Packs/Kenney-cursors/Outline/progress_CCW_75.svg", "res://Packs/Kenney-cursors/Outline/progress_CW_25.svg", "res://Packs/Kenney-cursors/Outline/progress_CW_50.svg", "res://Packs/Kenney-cursors/Outline/progress_CW_75.svg", "res://Packs/Kenney-cursors/Outline/progress_empty.svg", "res://Packs/Kenney-cursors/Outline/progress_full.svg", "res://Packs/Kenney-cursors/Outline/resize_a_cross.svg", "res://Packs/Kenney-cursors/Outline/resize_a_cross_diagonal.svg", "res://Packs/Kenney-cursors/Outline/resize_a_diagonal.svg", "res://Packs/Kenney-cursors/Outline/resize_a_diagonal_mirror.svg", "res://Packs/Kenney-cursors/Outline/resize_a_horizontal.svg", "res://Packs/Kenney-cursors/Outline/resize_a_vertical.svg", "res://Packs/Kenney-cursors/Outline/resize_b_cross.svg", "res://Packs/Kenney-cursors/Outline/resize_b_cross_diagonal.svg", "res://Packs/Kenney-cursors/Outline/resize_b_diagonal.svg", "res://Packs/Kenney-cursors/Outline/resize_b_diagonal_mirror.svg", "res://Packs/Kenney-cursors/Outline/resize_b_horizontal.svg", "res://Packs/Kenney-cursors/Outline/resize_b_vertical.svg", "res://Packs/Kenney-cursors/Outline/resize_c_cross.svg", "res://Packs/Kenney-cursors/Outline/resize_c_cross_diagonal.svg", "res://Packs/Kenney-cursors/Outline/resize_c_diagonal.svg", "res://Packs/Kenney-cursors/Outline/resize_c_diagonal_mirror.svg", "res://Packs/Kenney-cursors/Outline/resize_c_horizontal.svg", "res://Packs/Kenney-cursors/Outline/resize_c_vertical.svg", "res://Packs/Kenney-cursors/Outline/resize_d_cross.svg", "res://Packs/Kenney-cursors/Outline/resize_d_cross_diagonal.svg", "res://Packs/Kenney-cursors/Outline/resize_d_diagonal.svg", "res://Packs/Kenney-cursors/Outline/resize_d_diagonal_mirror.svg", "res://Packs/Kenney-cursors/Outline/resize_d_horizontal.svg", "res://Packs/Kenney-cursors/Outline/resize_d_vertical.svg", "res://Packs/Kenney-cursors/Outline/resize_e_cross.svg", "res://Packs/Kenney-cursors/Outline/resize_e_cross_diagonal.svg", "res://Packs/Kenney-cursors/Outline/resize_e_diagonal.svg", "res://Packs/Kenney-cursors/Outline/resize_e_diagonal_mirror.svg", "res://Packs/Kenney-cursors/Outline/resize_e_horizontal.svg", "res://Packs/Kenney-cursors/Outline/resize_e_vertical.svg", "res://Packs/Kenney-cursors/Outline/resize_horizontal.svg", "res://Packs/Kenney-cursors/Outline/resize_vertical.svg", "res://Packs/Kenney-cursors/Outline/rotate_ccw.svg", "res://Packs/Kenney-cursors/Outline/rotate_cw.svg", "res://Packs/Kenney-cursors/Outline/rotate_horizontal_down.svg", "res://Packs/Kenney-cursors/Outline/rotate_horizontal_up.svg", "res://Packs/Kenney-cursors/Outline/stairs.svg", "res://Packs/Kenney-cursors/Outline/stairs_down.svg", "res://Packs/Kenney-cursors/Outline/stairs_up.svg", "res://Packs/Kenney-cursors/Outline/steps.svg", "res://Packs/Kenney-cursors/Outline/target_a.svg", "res://Packs/Kenney-cursors/Outline/target_b.svg", "res://Packs/Kenney-cursors/Outline/target_round_a.svg", "res://Packs/Kenney-cursors/Outline/target_round_b.svg", "res://Packs/Kenney-cursors/Outline/tool_axe.svg", "res://Packs/Kenney-cursors/Outline/tool_axe_single.svg", "res://Packs/Kenney-cursors/Outline/tool_bomb.svg", "res://Packs/Kenney-cursors/Outline/tool_bow.svg", "res://Packs/Kenney-cursors/Outline/tool_hammer.svg", "res://Packs/Kenney-cursors/Outline/tool_hoe.svg", "res://Packs/Kenney-cursors/Outline/tool_pickaxe.svg", "res://Packs/Kenney-cursors/Outline/tool_shovel.svg", "res://Packs/Kenney-cursors/Outline/tool_sword_a.svg", "res://Packs/Kenney-cursors/Outline/tool_sword_b.svg", "res://Packs/Kenney-cursors/Outline/tool_torch.svg", "res://Packs/Kenney-cursors/Outline/tool_wand.svg", "res://Packs/Kenney-cursors/Outline/tool_watering_can.svg", "res://Packs/Kenney-cursors/Outline/tool_wrench.svg", "res://Packs/Kenney-cursors/Outline/tracking_horizontal.svg", "res://Packs/Kenney-cursors/Outline/tracking_horizontal_down.svg", "res://Packs/Kenney-cursors/Outline/tracking_horizontal_up.svg", "res://Packs/Kenney-cursors/Outline/tracking_vertical.svg", "res://Packs/Kenney-cursors/Outline/tracking_vertical_left.svg", "res://Packs/Kenney-cursors/Outline/tracking_vertical_right.svg", "res://Packs/Kenney-cursors/Outline/zoom.svg", "res://Packs/Kenney-cursors/Outline/zoom_in.svg", "res://Packs/Kenney-cursors/Outline/zoom_out.svg", "res://Packs/Kenney-cursors/Outline/zoom_reset.svg")
include_filter=""
exclude_filter=""
export_path="BUILDS/Kenshi2.exe"
@@ -76,7 +76,7 @@ advanced_options=true
dedicated_server=false
custom_features=""
export_filter="scenes"
-export_files=PackedStringArray("res://Packs/Maps/gym.tscn")
+export_files=PackedStringArray()
include_filter=""
exclude_filter=""
export_path="BUILDS/Kenshi2_debug.exe"
diff --git a/project.godot b/project.godot
index df59b54..e67c405 100644
--- a/project.godot
+++ b/project.godot
@@ -16,6 +16,10 @@ run/main_scene="uid://dnmetcwb14svi"
config/features=PackedStringArray("4.5", "Forward Plus")
config/icon="res://icon.svg"
+[display]
+
+mouse_cursor/custom_image="uid://dp4ed16rb1754"
+
[editor_plugins]
enabled=PackedStringArray("res://addons/SimpleFormatOnSave/plugin.cfg")
@@ -61,11 +65,13 @@ cam_right={
scroll_up={
"deadzone": 0.2,
"events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":4,"canceled":false,"pressed":false,"double_click":false,"script":null)
+, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":5,"axis_value":1.0,"script":null)
]
}
scroll_down={
"deadzone": 0.2,
"events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":16,"position":Vector2(681, 11),"global_position":Vector2(690, 57),"factor":1.0,"button_index":5,"canceled":false,"pressed":true,"double_click":false,"script":null)
+, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":4,"axis_value":1.0,"script":null)
]
}
rotation_mode={