This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import scraperwiki | |
import requests | |
import re | |
from pyquery import PyQuery as pq | |
# 3rd party library | |
try: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import scraperwiki | |
import requests | |
import re | |
from pyquery import PyQuery as pq | |
# 3rd party library | |
try: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if UNITY_EDITOR | |
namespace Sirenix.OdinInspector.Demos.RPGEditor | |
{ | |
public class ConsumableItem : Item | |
{ | |
[SuffixLabel("seconds ", true)] | |
[BoxGroup(STATS_BOX_GROUP)] | |
public float Cooldown; | |
[HorizontalGroup(STATS_BOX_GROUP + "/Dur")] |