Skip to content

Instantly share code, notes, and snippets.

View ViolentCrumble's full-sized avatar

Mike Powell ViolentCrumble

View GitHub Profile
<?php
/**
* Plugin Name: Custom Fields for WooCommerce
* Description: Add custom fields to WooCommerce products
* Version: 1.0.0
* Author: Gareth Harris
* Author URI: https://catapultthemes.com/
* Text Domain: cfwc
* WC requires at least: 3.4.0
* WC tested up to: 3.4.2
@ViolentCrumble
ViolentCrumble / DelegateExample.cs
Last active June 2, 2019 09:53
Delegate Example 1 - Game Dev league Unity Tutorial
using UnityEngine;
using System.Collections;
public class DelegateExample : MonoBehaviour
{
delegate void MyDelegate(int num);
MyDelegate myDelegate;