This file contains 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
#include "../sfall/sfall.h" | |
#include "../sfall/define_lite.h" | |
#include "../headers/global.h" | |
#define GAS_TANK_CAPACITY (80000) | |
/* | |
Runs continuously during worldmap travel on car. |
This file contains 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
# -*- encoding: utf-8 -*- | |
from pathlib import Path | |
from typing import List | |
from PyQt5.QtCore import QDir | |
import mobase | |
from ..basic_features import BasicGameSaveGameInfo |
This file contains 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
public class Example : MonoBehaviour | |
{ | |
[SerializeField] | |
private MyInterfaceReference reference; | |
private void Awake() | |
{ | |
reference.Value.Quack(); | |
} | |
} |
This file contains 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
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using UnityEngine; | |
using UnityEngine.ProBuilder; | |
using UnityEditor; | |
using UnityEditor.ProBuilder; | |
/// <summary> | |
/// Custom tools for working with ProBuilder. |