summaryrefslogtreecommitdiff
path: root/src/content.rs
blob: 94ea18dd4888e0b43180ca040a72bae6c8c29f61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
pub fn create_gitignore_file() -> String {
		return
r#"# Godot 4+ ignores
.godot/

# Godot 3 ignores
.import/

# Imported translations (automatically generated from CSV files)
*.translation

# Mono-specific ignores
.mono/
data_*/

# Glam-specific ignores
.glam.d/"#.to_string();
}

pub fn create_gdignore_file() -> String {
		return
r#"# Hide this folder from Godot editor"#.to_string();
}

pub fn create_glam_file() -> String {
		return
r#"{
    "packages" : [
    ]
}
"#.to_string();
}