summaryrefslogtreecommitdiff
path: root/src/content.rs
blob: b31b0334bcac62cdf669010d339336e5d6455c0f (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
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();
}