This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
checking for architecture ... none | |
configure | |
{ | |
clean = true | |
buildir = build | |
ccache = true | |
kind = static | |
arch = none | |
mode = release | |
plat = cross |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-16"?> | |
<ResourceManifest | |
xmlns:xsd="http://www.w3.org/2001/XMLSchema" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<Name>Example Mod</Name> | |
<Guid>frityet.example</Guid> | |
<Assets> | |
<AssetManifest> | |
<Type>Texture</Type> | |
<Target>M1A1</Target> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$schema: 'http://json-schema.org/draft-07/schema' | |
$id: https://raw.githubusercontent.com/H3VR-Modding/Mason/v1.0.0/schemas/project/root.json | |
type: object | |
title: Mason Project | |
description: A Mason project | |
examples: | |
- version: 1 | |
ignore: | |
- C10 | |
dependencies: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation; | |
import PlaygroundSupport; | |
//We use async in this program, it needs to go inf | |
PlaygroundPage.current.needsIndefiniteExecution = true; | |
///Struct for a Github Asset (file inside the release) | |
struct GithubReleaseAsset : Decodable { | |
///Name of the asset | |
let fileName: String; |
NewerOlder