Skip to content

Instantly share code, notes, and snippets.

View Quantumlyy's full-sized avatar
💭
Available

Nejc Drobnič Quantumlyy

💭
Available
View GitHub Profile

Keybase proof

I hereby claim:

  • I am quantumlyy on github.
  • I am quantumly (https://keybase.io/quantumly) on keybase.
  • I have a public key ASDHJpvL8QH2mLzqnO9_VFC1NYCHldrVtWDdt-uTOLqUsQo

To claim this, I am signing this object:

did:3:kjzl6cwe1jw14beawr7f02ska6ff15j6f4zfxj47u8ic4j7qz3tk6ljtdgdj1rh
@Quantumlyy
Quantumlyy / cryptokitties.sol
Created April 3, 2021 12:06 — forked from arpit/cryptokitties.sol
Cryptokitties Contract from the Eth blockchain
pragma solidity ^0.4.11;
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;

Keybase proof

I hereby claim:

  • I am quantumlytangled on github.
  • I am quantumly (https://keybase.io/quantumly) on keybase.
  • I have a public key ASCe4RRmua0bm5E85IG_D4U6N6XsUuIra_W-PyC1213qpwo

To claim this, I am signing this object:

export enum RelationshipType {
None = 0,
Outgoing,
Incoming,
Friend,
Restricted,
Blocked
}
export enum HousePermission {
SEND_MESSAGES = 1 << 0,
READ_MESSAGES = 1 << 1,
ADMINISTRATOR = 1 << 2,
MODERATE_ROOM = 1 << 3,
EVICT_MEMBERS = 1 << 4,
KICK_MEMBERS = 1 << 5,
ATTACH_MEDIA = 1 << 6,
MANAGE_ROLES = 1 << 7,
MANAGE_BILLING = 1 << 8,
using Discord;
using Discord.Commands;
using Discord.Audio;
using Discord.OAuth2;
using Discord.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;