00001 // sword2net.h 00002 00003 #pragma once 00004 using namespace System; 00005 using namespace System::Collections::Generic; 00006 00007 namespace sword2net { 00008 00009 00010 public ref class SwordLibrary 00011 { 00012 00013 public: 00014 SwordLibrary(void); 00015 List<String^>^ GetSwordModules(String^ modType); 00016 00017 }; 00018 00019 }