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:
I hereby claim:
To claim this, I am signing this object:
| did:3:kjzl6cwe1jw14beawr7f02ska6ff15j6f4zfxj47u8ic4j7qz3tk6ljtdgdj1rh |
| 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; |
I hereby claim:
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; |