Skip to content

Instantly share code, notes, and snippets.

@m039
m039 / MemoryAccountContentProvider.java
Created September 13, 2013 12:39
Custom ContentProvider example, based on memory array (android)
/** WTFContentProvider.java ---
*
* Copyright (C) 2013 Mozgin Dmitry
*
* Author: Mozgin Dmitry <flam44@gmail.com>
*
*
*/
package com.m039.example.provider;
@m039
m039 / Singleton.cs
Created August 3, 2023 00:12
Basic Unity singleton
public class Singleton<T> : MonoBehaviour where T : Singleton<T>
{
static public T s_Instance;
static public T Instance
{
get
{
if (s_Instance == null)
{