You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
347 B
19 lines
347 B
3 years ago
|
#ifndef SoPigeonIncluded
|
||
|
#define SoPigeonIncluded
|
||
|
|
||
|
library SoPigeon initializer SoPigeonSetup needs SoBase
|
||
|
|
||
|
globals
|
||
|
private hashtable data = InitHashtable()
|
||
|
endglobals
|
||
|
|
||
|
#include "Pigeon/GradientTextTag.j"
|
||
|
|
||
|
function SoPigeonSetup takes nothing returns nothing
|
||
|
|
||
|
endfunction
|
||
|
|
||
|
endlibrary
|
||
|
|
||
|
#endif //SoPigeonIncluded
|