Skip to content

Instantly share code, notes, and snippets.

View jakep84's full-sized avatar

Jake jakep84

View GitHub Profile
pragma solidity >=0.8.0;
contract Leaderboard {
// person who deploys contract is the owner
address owner;
// lists top 100 users
uint leaderboardLength = 100;
pragma solidity ^0.8.0;
contract PiggyBank {
address payable hodlerAddress;
uint balance = 0;
uint deadline;
uint minValue = 1;
function enrollBank() public {
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ChannelTriggerOpt : MonoBehaviour
{
[SerializeField]
private string channelName;
[SerializeField]
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using agora_gaming_rtc;
using UnityEngine.UI;
using System.Globalization;
using System.Runtime.InteropServices;
using System;
using OculusSampleFramework;
using UnityEditor;
using System.Collections;
using System.Collections.Generic;
using UnityEngine.SceneManagement;
using UnityEngine.UI;
using UnityEngine;
#if(UNITY_2018_3_OR_NEWER)
using UnityEngine.Android;
#endif
using agora_gaming_rtc;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.VR;
public class VRinactive : MonoBehavior {
public void Start()
{
StartCouroutine(DeactivateVR("none"));
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.VR;
public class VRactive : MonoBehavior {
public void Start()
{
StartCouroutine(ActivateVR("carboard"));