Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: flaticon64 #192

Merged
merged 9 commits into from
Sep 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions modular_ss220/_misc/_misc.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/datum/modpack/misc
name = "Различное"
desc = "Различные полезные функции, которые обязательно(нет) кому то понадобятся"
author = "furior"
3 changes: 3 additions & 0 deletions modular_ss220/_misc/_misc.dme
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#include "_misc.dm"

#include "code/icons.dm"
2 changes: 2 additions & 0 deletions modular_ss220/_misc/code/icons.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/proc/flatbicon(obj, use_class = TRUE)
return bicon(getFlatIcon(obj))
4 changes: 4 additions & 0 deletions modular_ss220/debug/_debug.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/datum/modpack/debug
name = "Прочее"
desc = "Различные инструменты для отладки и щитспавна."
author = "furior"
3 changes: 3 additions & 0 deletions modular_ss220/debug/_debug.dme
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#include "_debug.dm"

#include "code/icons.dm"
3 changes: 3 additions & 0 deletions modular_ss220/debug/code/icons.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/atom/proc/download_flaticon()
var/icon/I = getFlatIcon(src)
usr << ftp(I, "[name].png")
2 changes: 2 additions & 0 deletions modular_ss220/modular_ss220.dme
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#include "_defines220/_defines220.dme"
#include "_signals220/_signals220.dme"
#include "_maps220/_maps220.dme"
#include "_misc/_misc.dme"
#include "_span/_span.dme"


Expand Down Expand Up @@ -36,6 +37,7 @@
#include "balance/_balance.dme"
#include "bureaucracy/_bureaucracy.dme"
#include "crawl_speed/_crawl_speed.dme"
#include "debug/_debug.dme"
#include "discord_link/_discord_link.dme"
#include "emotes/_emotes.dme"
#include "events/_events.dme"
Expand Down