twitch addon
This commit is contained in:
parent
2cd7af98a1
commit
07de7179c9
254 changed files with 18420 additions and 1 deletions
15
addons/very-simple-twitch/emote_location.gd
Normal file
15
addons/very-simple-twitch/emote_location.gd
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
class_name VSTEmoteLocation
|
||||
|
||||
extends RefCounted
|
||||
|
||||
var id : String
|
||||
var start : int
|
||||
var end : int
|
||||
|
||||
func _init(emote_id, start_idx, end_idx):
|
||||
self.id = emote_id
|
||||
self.start = start_idx
|
||||
self.end = end_idx
|
||||
|
||||
static func smaller(a: VSTEmoteLocation, b: VSTEmoteLocation):
|
||||
return a.start < b.start
|
||||
Loading…
Add table
Add a link
Reference in a new issue