Skip to content

Instantly share code, notes, and snippets.

View tomaszczerminski's full-sized avatar
🏠
Working from home

Tomasz Czermiński tomaszczerminski

🏠
Working from home
View GitHub Profile
using System.Diagnostics.CodeAnalysis;
using Sirenix.OdinInspector;
using Sirenix.Serialization;
namespace SDK.Gameplay.States
{
// We need it in order to enable/disable states
[SuppressMessage("ReSharper", "Unity.RedundantEventFunction")]
public abstract class AbstractState : SerializedMonoBehaviour
{
@tomaszczerminski
tomaszczerminski / .travis.yml
Created May 24, 2019 11:19 — forked from ryboe/.travis.yml
Example .travis.yml for Golang
# use the latest ubuntu environment (18.04) available on travis
dist: xenial
language: go
# Force-enable Go modules. Also force go to use the code in vendor/
# These will both be unnecessary when Go 1.13 lands.
env:
- GO111MODULE=on
- GOFLAGS='-mod vendor'