You've already forked pico-launcher
mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-01-09 16:28:48 -08:00
15 lines
313 B
C++
15 lines
313 B
C++
#pragma once
|
|
#include "core/String.h"
|
|
|
|
class FileAssociation
|
|
{
|
|
public:
|
|
FileAssociation() { }
|
|
|
|
FileAssociation(const char* extension, const char* applicationPath)
|
|
: extension(extension), applicationPath(applicationPath) { }
|
|
|
|
String<char, 8> extension;
|
|
String<char, 256> applicationPath;
|
|
};
|